/* {$keywords} - Main Stylesheet */
/* Modern Brazilian Gaming Platform Styles */

/* CSS Reset and Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* CSS Variables - 深海蓝青绿主题 */
:root {
    /* 背景色系 */
    --primary-bg: #0f172a;      /* 深海蓝 - 主背景 */
    --secondary-bg: #1e293b;     /* 中蓝 - 卡片背景 */
    --tertiary-bg: #334155;     /* 浅蓝 - 悬浮背景 */
    
    /* 强调色系 */
    --accent-color: #06b6d4;     /* 青绿 - 主要CTA */
    --accent-hover: #0891b2;     /* 深青绿 - 悬停状态 */
    --accent-light: #67e8f9;    /* 浅青绿 - 高亮文字 */
    
    /* 文字色系 */
    --text-white: #f8fafc;      /* 纯白 - 主要文字 */
    --text-gray: #cbd5e1;       /* 淡灰 - 次要文字 */
    --text-muted: #94a3b8;      /* 灰色 - 辅助文字 */
    
    /* 功能色系 */
    --success-color: #10b981;   /* 翠绿 - 成功状态 */
    --danger-color: #ef4444;    /* 红色 - 错误状态 */
    --warning-color: #f97316;   /* 橙色 - 警告状态 */
    --info-color: #06b6d4;      /* 青绿 - 信息提示 */
    
    /* 渐变色系 */
    --primary-gradient: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    --hero-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --card-gradient: linear-gradient(145deg, #1e293b 0%, #334155 100%);
    
    /* Shadows - 深海蓝青绿主题 */
    --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.15);
    --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.2);
    --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.25);
    --shadow-accent: 0 8px 32px rgba(6, 182, 212, 0.4);
    --shadow-glow: 0 0 30px rgba(6, 182, 212, 0.3);
    --shadow-vip: 0 0 20px rgba(6, 182, 212, 0.3);
    
    /* Typography */
    --font-primary: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Roboto Slab', Georgia, serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 4rem 0;
    --element-spacing: 1.5rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--primary-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.hover_warm_862b {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.dark-3467 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .dark-3467 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .dark-3467 {
        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 */
.element-e426 {
    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);
}

.static-3e15 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .static-3e15 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .image_lower_c08b {
        grid-column: 1;
    }
    
    .over_0cd1 {
        grid-column: 2;
    }
    
    .input-short-e39f {
        grid-column: 3;
    }
}

.image_lower_c08b img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.image_lower_c08b:hover img {
    transform: scale(1.05);
}

/* Navigation */
.warm_c3b5 {
    display: none;
}

@media (min-width: 1024px) {
    .warm_c3b5 {
        display: block;
    }
}

/* Grouped Navigation */
.shade_b317 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.banner-8e82 {
    position: relative;
}

.detail_gold_b6e7 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.banner-8e82 .card_up_2357 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.card_up_2357 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.list-outer-d9fd {
    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;
}

.list-outer-d9fd:hover,
.list-outer-d9fd.fn-active-8929 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.column-2e0c {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .column-2e0c {
        display: flex;
    }
}

/* Mobile Register Button */
.over_0cd1 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .over_0cd1 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.tooltip-a333 {
    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;
}

.tooltip-a333::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 */
.input-short-e39f {
    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) {
    .input-short-e39f {
        display: none;
    }
}

.input-short-e39f span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.input-short-e39f.fn-active-8929 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.input-short-e39f.fn-active-8929 span:nth-child(2) {
    opacity: 0;
}

.input-short-e39f.fn-active-8929 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.picture-wide-b087 {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.picture-wide-b087.fn-active-8929 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.info-thick-b249 {
    overflow: hidden;
}

.secondary_down_0db6 {
    list-style: none;
    padding: 0.75rem 0;
}

.notification_7747 {
    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;
}

.notification_7747:hover,
.notification_7747.fn-active-8929 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.notification_7747.heading-center-6b8e {
    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;
}

.notification_7747.heading-center-6b8e::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 */
.header-east-e804 {
    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;
}

.texture-yellow-b706 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.texture-yellow-b706:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.banner-silver-cfa2 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.banner-silver-cfa2:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.background-9734 {
    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;
}

.background-9734:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.overlay-old-d1c4 {
    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;
}

.accordion_714a {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.accordion_714a:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.image-2ef3 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.image-2ef3:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.logo_9229 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.logo_9229: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);
}

.info_liquid_39d0 {
    font-size: 1em;
    font-weight: 700;
}

.title-98fa {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.fresh_86b3 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.fresh_86b3::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;
}

.feature-2cbd {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .feature-2cbd {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.right-4c82 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.mini-8f03 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.article-easy-1ce2 {
    margin-bottom: 2rem;
}

.motion_b3fa {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .motion_b3fa {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tall-2d18 {
    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);
}

.gradient_outer_db05 {
    font-size: 1.5rem;
}

.wrapper_gold_dade {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.paragraph_5ab1 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sort_left_c859 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.sort_left_c859:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.pagination_fast_ec00 {
    text-align: center;
    margin-bottom: 3rem;
}

.green-93f8 {
    margin-bottom: 1rem;
}

.overlay_hovered_648a {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.article_b305 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .article_b305 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .article_b305.huge_acfe {
        direction: rtl;
    }
    
    .article_b305.huge_acfe > * {
        direction: ltr;
    }
}

.component-5e42 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.component-5e42:first-child {
    margin-top: 0;
}

.red_bb8a {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.highlight_230e {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.highlight_230e:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.menu_1124 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .menu_1124 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.logo-24b1 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.outline-7249 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.in-75de {
    list-style: none;
}

.in-75de li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.in-75de li:last-child {
    border-bottom: none;
}

/* Games Features */
.disabled-cf2b {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.slow_9c31 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.status_d8f5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.west-f599 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.green_a09c {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.element_3112 {
    margin: 2rem 0;
}

.over-3b52 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.dim-2ac6 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.banner-7cbc {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.module_wood_ac01 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.down_07e5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .down_07e5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.black-b1f5 {
    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);
}

.black-b1f5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.description_wide_93cf {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.popup_selected_3ff4 {
    font-size: 1.5rem;
}

.thumbnail_old_93fb {
    color: var(--accent-color);
    margin: 0;
}

.new_11df {
    list-style: none;
}

.new_11df li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.new_11df li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.badge_action_9782 {
    margin: 2rem 0;
}

.notification_8343 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.easy_050c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .easy_050c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.logo-fluid-45f1 {
    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);
}

.photo_active_d47e {
    font-size: 1.25rem;
}

.gallery_pink_4cac {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.cool-506d,
.link-4435 {
    text-align: center;
    margin: 2rem 0;
}

.popup-middle-30fb,
.banner-rough-f8df {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.up_6cf8 {
    margin: 2rem 0;
    text-align: center;
}

.glass_5f1e {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.glass_5f1e::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;
}

.advanced_8c87 {
    position: relative;
    z-index: 1;
}

.dirty-a3b3 {
    margin-bottom: 1rem;
}

.link-7a66 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.warm-9395 {
    margin-bottom: 3rem;
}

.tooltip_west_3f86 {
    margin-top: 3rem;
}

.popup_soft_5e3b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .popup_soft_5e3b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.popup_soft_5e3b .tall-2d18 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.description_7950 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.nav_9b6e {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.lite_22fd {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.logo_south_5699 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .logo_south_5699 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .logo_south_5699 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.fixed_a48f {
    margin-bottom: 1rem;
}

.slider_f6cd img {
    margin-bottom: 1rem;
}

.inner_9845 {
    color: var(--text-gray);
    line-height: 1.6;
}

.in-114b {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.header-medium-868d {
    list-style: none;
}

.header-medium-868d li {
    margin-bottom: 0.5rem;
}

.header-medium-868d a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.header-medium-868d a:hover {
    color: var(--accent-color);
}

.grid_clean_b63f {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.dirty-0350 {
    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);
}

.dirty-0350:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.backdrop-75d9 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.backdrop-75d9 p {
    margin-bottom: 0.25rem;
}

.pagination-green-8d23 {
    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) {
    .pagination-green-8d23 {
        flex-direction: row;
    }
}

.tertiary-green-790e {
    text-align: center;
}

@media (min-width: 768px) {
    .tertiary-green-790e {
        text-align: left;
    }
}

.tertiary-green-790e p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.gas_c1d9 {
    font-size: 0.75rem !important;
}

.description-top-90ce {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.pattern-b4f3 {
    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);
    }
}

.thumbnail_3cd7 {
    animation: fadeInUp 0.6s ease-out;
}

.over_47ec {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.tiny_128c {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tiny_128c {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.button_2c0c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .button_2c0c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.center_4e94 {
    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);
}

.center_4e94 .status_d8f5 {
    font-size: 1.25rem;
}

.center_4e94 .short-1dba {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.menu-selected-13c2 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .menu-selected-13c2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.chip-92f8 {
    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);
}

.chip-92f8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.wrapper-9d8b {
    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);
}

.texture-fda7 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.box_bottom_200f {
    color: var(--text-gray);
    line-height: 1.6;
}

.breadcrumb-hovered-18d9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.active_7aff {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.active_7aff .west-f599 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.active_7aff .green_a09c {
    color: var(--text-gray);
    line-height: 1.6;
}

.lite-bd1c {
    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);
}

.block_ded3 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.block_ded3 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.block_ded3 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.mask-e8d0 {
    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);
}

.blue_532b {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.popup_43a8 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.popup_43a8 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.popup_43a8 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);
}

.popup_43a8 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.popup_43a8 input::placeholder {
    color: var(--text-muted);
}

.wide_6e85 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.easy_8cf1 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.easy_8cf1 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.stale_3c18 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.stale_3c18:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.easy_050c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .easy_050c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.logo-fluid-45f1 {
    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);
}

.logo-fluid-45f1 .photo_active_d47e {
    font-size: 1.25rem;
}

.logo-fluid-45f1 .gallery_pink_4cac {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.short_6db3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.red_3458 {
    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);
}

.red_3458 .status_d8f5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.red_3458 .west-f599 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.red_3458 .green_a09c {
    color: var(--text-gray);
    line-height: 1.6;
}

.gas-e5da {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.accent_bottom_9699 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.accent_bottom_9699 .column-easy-888d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.accent_bottom_9699 .cool_1b26 {
    color: var(--text-gray);
    line-height: 1.6;
}

.focused_f551 {
    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);
}

.outline_black_af29 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .outline_black_af29 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.next-f928 {
    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);
}

.next-f928:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.paragraph_142c {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.icon-south-7d2d {
    flex: 1;
}

.notification-5e50 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.focus-narrow-e915 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.basic_7158 {
    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);
}

.basic_7158:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.secondary-first-35d9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .secondary-first-35d9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.label-0456 {
    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);
}

.label-0456:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.wrapper-full-9c95 {
    font-size: 2rem;
    flex-shrink: 0;
}

.last-6b4d {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail_522d {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.first_10c6 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.dropdown-bfde {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.paragraph-focused-e707 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.warm-1f7a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.warm-1f7a .accordion_east_66fa {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.warm-1f7a .brown_43dd {
    color: var(--text-gray);
    line-height: 1.6;
}

.caption_b36d {
    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);
}

.backdrop-3021 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.grid_a2be {
    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);
}

.grid_a2be .status_d8f5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.grid_a2be .west-f599 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.grid_a2be .green_a09c {
    color: var(--text-gray);
    line-height: 1.6;
}

.video_32a6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .video_32a6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.box_f83e {
    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);
}

.box_f83e:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.accordion_left_9889 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accordion_left_9889 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.image_6a35 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.image_6a35:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.short_27f8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.module-0f75 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dim-2ac6 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.shadow_d229 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.main_up_83d0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pressed_a450 {
    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);
}

.pressed_a450:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.simple-72a0 {
    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);
}

.badge-under-9827 {
    flex: 1;
}

.icon-large-5225 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.aside_ada1 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.border-e5ec {
    color: var(--text-gray);
    line-height: 1.6;
}

.light_09b4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.thumbnail-soft-d966 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.thumbnail-soft-d966 .column-easy-888d {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.thumbnail-soft-d966 .cool_1b26 {
    color: var(--text-gray);
    line-height: 1.6;
}

.link-4435 {
    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);
}

.hard_6247 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hard_6247 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.picture_2068 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .picture_2068 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.narrow-56c6 {
    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);
}

.narrow-56c6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hover_clean_5247 {
    font-size: 2rem;
    flex-shrink: 0;
}

.gradient_fluid_648e {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.layout_mini_b4c5 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.smooth_560b {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.title-glass-c69b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gradient_793a {
    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_b4b9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.cold_e722 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.bronze-9b5c {
    color: var(--text-gray);
    line-height: 1.6;
}

.backdrop-3021 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.grid_a2be {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.grid_a2be .west-f599 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.grid_a2be .green_a09c {
    color: var(--text-gray);
    line-height: 1.6;
}

.short_2296 {
    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);
}

.description_218e {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .description_218e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .description_218e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.right-151b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.right-151b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pagination_27cc {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.south-923a {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.hero-dim-f725 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.button_bc98 {
    padding: 1.5rem;
}

.background_9e46 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.label-5f37 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.label-5f37 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;
}

.label-5f37 li:last-child {
    border-bottom: none;
}

.label-5f37 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.last-a7ab {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .last-a7ab {
        grid-template-columns: repeat(4, 1fr);
    }
}

.filter_action_bca5 {
    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);
}

.filter_action_bca5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.backdrop-e77e {
    font-size: 2rem;
    flex-shrink: 0;
}

.pattern-7876 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.highlight-brown-c969 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.filter_current_83f8 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.basic_39a0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.cold-0a5a {
    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);
}

.main-71a2 {
    font-size: 2rem;
    flex-shrink: 0;
}

.footer_a103 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hot-3063 {
    color: var(--text-gray);
    line-height: 1.6;
}

.fixed-ab7b {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.inner_79a1 {
    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);
}

.small_f259 {
    text-align: center;
}

.secondary_black_0944 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.accent-84bc {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.sidebar-025a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.content_a169 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.content_a169 .west-f599 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.content_a169 .green_a09c {
    color: var(--text-gray);
    line-height: 1.6;
}

.preview_52c2 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .preview_52c2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .preview_52c2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cold_7382 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.cold_7382:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hidden_11de {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.mini_3b54 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.west-f599 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.lower_490e {
    padding: 1.5rem;
}

.green_a09c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.fixed-71b2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fixed-71b2 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;
}

.fixed-71b2 li:last-child {
    border-bottom: none;
}

.fixed-71b2 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.accordion_new_9613 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.badge_4008 {
    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);
}

.badge_4008:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.active-cb0e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.iron-0ac9 {
    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);
}

.wrapper-9d8b {
    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;
}

.texture-fda7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.box_bottom_200f {
    color: var(--text-gray);
    line-height: 1.6;
}

.purple-e70f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.status_in_2e0d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.up-bd73 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.container-right-ec64 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.menu_stone_444a {
    display: flex;
    gap: 1rem;
}

.menu_stone_444a .nav-white-70eb {
    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;
}

.light_0ac3 {
    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);
}

.form_11c8 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.logo_cool_7c7a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.logo_cool_7c7a 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;
}

.logo_cool_7c7a li:last-child {
    border-bottom: none;
}

.logo_cool_7c7a li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.dropdown-f8af {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .dropdown-f8af {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .dropdown-f8af {
        grid-template-columns: repeat(4, 1fr);
    }
}

.out-9bfd {
    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-9bfd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.logo_3a79 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.tall_1ceb {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.accordion_east_66fa {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.popup-d749 {
    font-size: 1rem;
}

.alert_1047 {
    padding: 1.5rem;
}

.brown_43dd {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.alert-paper-d336 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.alert-paper-d336 .small_f259 {
    text-align: center;
}

.alert-paper-d336 .accent-84bc {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.alert-paper-d336 .outer-dcec {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.new_739a {
    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);
}

.new_739a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.prev-6e17 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .prev-6e17 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.backdrop-4e7a {
    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-4e7a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.preview_e6a9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.modal-9082 {
    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);
}

.column_lower_b0a7 {
    font-size: 2rem;
    flex-shrink: 0;
}

.down-fd34 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.active-4534 {
    color: var(--text-gray);
    line-height: 1.6;
}

.container_6390 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.warm-2522 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.right-c723 {
    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);
}

.box_96a4 {
    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;
}

.box_96a4.motion-9129 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.box_96a4.chip_down_baf2 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.box_96a4.caption-058b {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.box_96a4.stone-64dd {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.box_96a4.text_fluid_3561 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.silver_b27f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.focus-silver-4d3d {
    color: var(--text-gray);
    line-height: 1.6;
}

.accent_e2e2 {
    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);
}

.description-focused-b9d7 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.gas-e5da {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gas-e5da 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;
}

.gas-e5da li:last-child {
    border-bottom: none;
}

.gas-e5da li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.last-ec53 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .last-ec53 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .last-ec53 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.first_8680 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.first_8680:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.first_8680.upper_5e94 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .first_8680.upper_5e94 {
        grid-column: span 3;
    }
}

.dynamic_c709 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.first_8680.upper_5e94 .dynamic_c709 {
    background: rgba(6, 182, 212, 0.1);
}

.blue_f0ad {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.nav_solid_34ff {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.first_8680.upper_5e94 .nav_solid_34ff {
    color: var(--info-color);
}

.dim_9bc3 {
    padding: 1.5rem;
    text-align: center;
}

.background-lower-794f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.first_8680.upper_5e94 .background-lower-794f {
    color: var(--info-color);
}

.inner_5728 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.primary_under_867c {
    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 */
.carousel-187e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .carousel-187e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.paragraph_wood_daeb {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.paragraph_wood_daeb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.simple-bf46 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.red_3458 {
    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);
}

.photo_active_d47e {
    font-size: 2rem;
    flex-shrink: 0;
}

.hidden-solid-2977 {
    flex: 1;
}

.notification_8343 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tiny_4037 {
    color: var(--text-gray);
    line-height: 1.6;
}

.filter-iron-3660 {
    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);
}

.modal_f289 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.fast-5040 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pattern-b4f3 {
    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);
}

.pagination-f79d {
  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);
}

.pagination-f79d .small_f259 {
    text-align: center;
}

.pagination-f79d .secondary_black_0944 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.pagination-f79d .accent-84bc {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.mask_54ce {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gas_d946 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.widget-static-4141 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.banner-2107 {
    color: var(--text-gray);
    line-height: 1.6;
}

.pattern_cold_b0da {
    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);
}

.south-285d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.blue_4ced {
    color: var(--text-gray);
    line-height: 1.6;
}

.tertiary-hovered-7ac7 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .tertiary-hovered-7ac7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tertiary-hovered-7ac7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.border_ec3b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.border_ec3b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.box-down-19b5 {
    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);
}

.wide-3c8c {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.over-b4e7 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.alert-efc0 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.alert-efc0.header-fb08 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.alert-efc0.pink-c715 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.alert-efc0.steel-a956 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.hovered_5cfc {
    padding: 1.5rem;
    text-align: center;
}

.thumbnail_selected_abdd {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pro_5687 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.pro_5687 .logo_7be9 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.tooltip-f026 {
    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);
}

.tooltip-f026:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.image-in-b892 {
  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);
}

.aside_basic_53e5 {
    text-align: center;
}

.aside_basic_53e5 .secondary_black_0944 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.aside_basic_53e5 .accent-84bc {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.east-d9cd { text-align: center; }
.image_iron_7440 { text-align: left; }
.menu-3350 { text-align: right; }

.avatar-slow-d8af { margin-bottom: 0; }
.filter-hard-1b15 { margin-bottom: 0.5rem; }
.paragraph-4ac8 { margin-bottom: 1rem; }
.accent_easy_fc43 { margin-bottom: 1.5rem; }
.border_hard_8180 { margin-bottom: 2rem; }

.caption-85ab { margin-top: 0; }
.block-6f3d { margin-top: 0.5rem; }
.carousel-north-9d6c { margin-top: 1rem; }
.accordion_f44d { margin-top: 1.5rem; }
.layout-cool-7ca0 { margin-top: 2rem; }

.fn-hidden-8929 { display: none; }
.fn-visible-8929 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .fresh_86b3 {
        padding: 6rem 0 3rem;
    }
    
    .feature-2cbd {
        text-align: center;
    }
    
    .article_b305 {
        text-align: center;
    }
    
    .motion_b3fa {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .element-e426,
    .picture-wide-b087,
    .glass_5f1e,
    .lite_22fd {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .fresh_86b3 {
        background: none;
    }
}

/* Providers Section */
.menu-afbb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.slider_over_6d9f {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .slider_over_6d9f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .slider_over_6d9f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.image-1694 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.image-1694:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.left-3908 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.focus_be63 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.tooltip-blue-3e43 {
    list-style: none;
    padding: 0;
}

.tooltip-blue-3e43 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.tooltip-blue-3e43 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.pro_2d28 {
    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);
}

.pro_2d28 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.over-2dbc {
    padding: var(--section-padding);
}

.breadcrumb_top_c4c6 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .breadcrumb_top_c4c6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.right_71b1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.right_71b1:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.card-lower-e812 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.iron-b36b {
    display: flex;
    flex-direction: column;
}

.message_814c {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.pagination-lower-9c09 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.feature-bdbf {
    color: var(--accent-color);
}

.down_c429 {
    font-size: 1.25rem;
}

.popup-stone-da90 {
    margin-bottom: 1rem;
}

.popup-stone-da90 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.sidebar_paper_006b {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.narrow_8421 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.small_f259 {
    text-align: center;
}

.secondary_black_0944 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.accent-84bc {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.popup_fast_61da {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.image_red_ceb9 {
    margin: 2rem 0;
}

.layout-2ee2 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.layout-2ee2 .status_d8f5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.wood_10a0 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.north-e5ce {
    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;
}

.north-e5ce:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.menu_rough_d128 {
    font-size: 2rem;
}

.tooltip-8389 {
    display: flex;
    flex-direction: column;
}

.tertiary_5f2a {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.photo-gold-f845 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.wide-d695 {
    padding: var(--section-padding);
}

.mask-white-7fbd {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .mask-white-7fbd {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .mask-white-7fbd {
        grid-template-columns: repeat(3, 1fr);
    }
}

.inner_6e29 {
    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);
}

.inner_6e29:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.inner_6e29 .secondary_black_0944 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.inner_6e29 .accent-84bc {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.inner_6e29 .backdrop_edde {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.plasma_8203 {
    margin-top: 4rem;
}

.aside-action-788b {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.background-pink-facc {
    overflow-x: auto;
}

.avatar_black_aeef {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.avatar_black_aeef thead {
    background: var(--accent-color);
}

.avatar_black_aeef th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.avatar_black_aeef td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.avatar_black_aeef tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.avatar_black_aeef tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.brown-b077 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.media-static-8a9a {
    max-width: 900px;
    margin: 0 auto;
}

.gradient_south_d9ff {
    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);
}

.gradient_south_d9ff:hover {
    border-color: var(--accent-color);
}

.blue_fad3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.blue_fad3 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.breadcrumb-cold-856d {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.gradient_south_d9ff.fn-active-8929 .breadcrumb-cold-856d {
    transform: rotate(45deg);
}

.content-down-babd {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.gradient_south_d9ff.fn-active-8929 .content-down-babd {
    max-height: 1000px;
}

.content-down-babd p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.aside-2baa {
    padding: var(--section-padding);
}

.block_ded3 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.brown-7841 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.slow-1bc2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .slow-1bc2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.row-static-415d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.plasma-3659 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.media-ccb2 {
    font-size: 2rem;
}

.content_d83f {
    color: var(--text-white);
    margin: 0;
}

.shadow_76c2 {
    list-style: none;
    padding: 0;
}

.shadow_76c2 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.shadow_76c2 li:last-child {
    border-bottom: none;
}

.dirty_bd66 {
    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);
}

.dirty_bd66 p {
    color: var(--success-color);
    margin: 0;
}

.shadow_283f {
    margin-top: 3rem;
}

.form_11c8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.south_e83c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .south_e83c {
        grid-template-columns: repeat(2, 1fr);
    }
}

.carousel-pro-3992 {
    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);
}

.fast_d48e {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.carousel-pro-3992 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.action_00b6 {
    padding: var(--section-padding);
}

.tall_f675 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tall_f675 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.upper_b011 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.upper_b011:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.overlay_c98b {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.gas-1a01 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.lite-3bc1 {
    flex: 1;
}

.border-cold-d0ae {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.image_current_ac18 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.lite-bca5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.card-south-b8fe {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-south-b8fe:last-child {
    border-bottom: none;
}

/* Comparison Section */
.element_hot_9173 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.heading_d5ef {
    padding: var(--section-padding);
}

.fresh_1075 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.old_4648 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .old_4648 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.container_light_e651 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.narrow_ae8c, .column_new_92a8, .stale-7032 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.stale-7032 {
    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 */
.advanced_fa9c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.selected_b515 {
    margin: 2rem 0;
}

.notification_yellow_d7bd {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.advanced-20c4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.large_7fe5 {
    list-style: none;
    padding: 0;
}

.large_7fe5 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;
}

.large_7fe5 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.large_7fe5 li:last-child {
    border-bottom: none;
}

.first_90c8 {
    text-align: center;
    margin-top: 2rem;
}

.clean_426e {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.steel_e92c {
    padding: var(--section-padding);
}

.form_hovered_4faa {
    margin: 2rem 0;
}

.secondary-e464 {
    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) {
    .secondary-e464 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.secondary-e464:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.table-e468 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.alert_5e27 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.clean_1c44 {
    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;
}

.upper_ee99 {
    flex: 1;
}

.focus-west-e7d8 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.down_a101 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.under-70d7 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.tall-9da5 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .tall-9da5 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.avatar-out-9b40 {
    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);
}

.avatar-out-9b40:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.avatar-out-9b40 .secondary_black_0944 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.avatar-out-9b40 .accent-84bc {
    color: var(--text-gray);
    font-size: 1rem;
}

.wrapper_f93c {
    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);
}

.last-e740 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.last-e740 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.gradient-1037 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .gradient-1037 {
        grid-template-columns: 1fr 1fr;
    }
}

.notification-fluid-8953 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.background_thick_4040 {
    margin-bottom: 1.5rem;
}

.background_thick_4040 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.background_thick_4040 input,
.background_thick_4040 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;
}

.background_thick_4040 input:focus,
.background_thick_4040 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.button-new-91f7 {
    width: 100%;
    margin-top: 1rem;
}

.texture_a1ba {
    display: flex;
    align-items: center;
}

.clean-9b0f {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.container-04d0 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.progress-8d55 {
    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;
}

.north_38ff {
    color: var(--text-gray);
}

.shade_2f5f {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.mini-572d {
    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);
}

.mini-572d p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.right_2157 {
    margin-top: 3rem;
}

.list_green_8516 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.summary_eff0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.top_2398 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.current_c4ff {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.current_c4ff:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.basic_0f05 {
    padding: var(--section-padding);
}

.article-short-ccba {
    margin: 2rem 0;
}

.photo_black_e22e {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.tabs_lower_f8e2 {
    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;
}

.tabs_lower_f8e2:hover, .tabs_lower_f8e2.fn-active-8929 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.header-advanced-8769 {
    display: none;
}

.header-advanced-8769.fn-active-8929 {
    display: block;
}

.info_dc4a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.panel-a0e2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.widget_center_ac14 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.widget_center_ac14 ul {
    list-style: none;
    padding: 0;
}

.widget_center_ac14 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.widget_center_ac14 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.last_ba6a {
    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 */
.tooltip_e400 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.complex-1e7d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.soft-6fba {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.banner-b374 {
    color: var(--accent-color);
    margin: 0;
}

.preview_3589 {
    display: flex;
    gap: 1.5rem;
}

.panel-clean-4a19 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.accent-cc3f {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.text_f9c8 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.text_f9c8.hard-f329 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.text_f9c8.gradient_359f {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.text_f9c8.breadcrumb_0907 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.orange-0844 {
    margin-top: 2rem;
}

.pattern_gas_c3e3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.first_d5b3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .first_d5b3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.banner_7744 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.progress_ff4b {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.notification_inner_eadd {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.disabled_inner_6cab {
    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 */
.grid-up-e882 {
    padding: var(--section-padding);
}

.surface-dfaa {
    margin: 2rem 0;
}

.secondary-lower-85e3 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.complex-4dce {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.footer-light-a53d {
    list-style: none;
    padding: 0;
}

.footer-light-a53d 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;
}

.footer-light-a53d li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.footer-light-a53d li:last-child {
    border-bottom: none;
}

.border-static-bf54 {
    margin: 2rem 0;
}

.picture_short_84b7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.outer_009d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .outer_009d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.container_7931 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dark_f2df {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.smooth_41bc {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.gradient_outer_7b41 {
    margin-top: 2rem;
}

.notification-5e50 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.search-cool-8c63 {
    list-style: none;
    padding: 0;
}

.bright_e8c9 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.bright_e8c9 a {
    color: var(--accent-color);
    text-decoration: none;
}

.bright_e8c9 a:hover {
    text-decoration: underline;
}

.shadow_7de1 {
    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 */
.carousel-1599 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.accent_91b7 {
    margin: 2rem 0;
}

.current-df84 {
    margin-bottom: 3rem;
}

.current-df84 .advanced-20c4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.description-c5ed {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hovered-6277 {
    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);
}

.hovered-6277:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.input_focused_8e68 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .input_focused_8e68 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.icon_upper_e9ae {
    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 */
.item-982b {
    padding: var(--section-padding);
}

.card-fresh-6f69 {
    margin: 2rem 0;
}

.tall_953e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.sort_clean_cf60 {
    overflow-x: auto;
    margin: 2rem 0;
}

.static-dffd {
    background: rgba(6, 182, 212, 0.1) !important;
}

.paragraph_2abe {
    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;
}

.primary_north_86be {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.dim_2fb3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .dim_2fb3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.banner-bottom-5445 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.banner-bottom-5445 .status_d8f5 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.banner-bottom-5445 .west-f599 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.fixed-14fe {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.steel-b6ab {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.old-28f8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .old-28f8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.background-center-4723 {
    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;
}

.background-center-4723:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.hot-8b87 {
    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);
}

.column-yellow-39b8 {
    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;
}

.preview_94bd {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.heading_ffe8 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.module-rough-493f {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.overlay_c36a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.box-lite-216b {
    color: var(--text-white);
    font-weight: 600;
}

.notification_up_fa57 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.dirty_e760 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dirty_e760 .nav-white-70eb {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.link_old_76b7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .link_old_76b7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.modal-d674 {
    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);
}

.modal-d674:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.modal-d674 .secondary_black_0944 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.modal-d674 .accent-84bc {
    color: var(--text-gray);
    font-size: 1rem;
}

.texture_motion_a405 {
    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);
}

.yellow-4a0d {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.yellow-4a0d strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.title-glass-c69b {
    margin: 2rem 0;
}

.gradient_793a {
    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);
}

.gradient_793a:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.pink_b4b9 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.video-plasma-73e4 {
    flex: 1;
}

.cold_e722 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.bronze-9b5c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.backdrop-3021 {
    margin: 2rem 0;
}

.grid_a2be {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.grid_a2be .west-f599 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.grid_a2be .green_a09c {
    color: var(--text-gray);
    margin: 0;
}

.short_2296 {
    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);
}

.short_2296 .popup-middle-30fb {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.fixed-14fe {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.simple-72a0 {
    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;
}

.badge-under-9827 {
    flex: 1;
}

.aside_ada1 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.border-e5ec {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.wrapper-9d8b {
    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;
}

.soft-5ff4 {
    flex: 1;
}

.texture-fda7 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.box_bottom_200f {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.up-bd73 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.container-right-ec64 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.menu_stone_444a {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.menu_stone_444a .nav-white-70eb {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.light_0ac3 {
    margin-top: 2rem;
}

.light_0ac3 .form_11c8 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.feature-51ba {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.inner_79a1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .inner_79a1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.inner_79a1 .small_f259 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.sidebar-025a {
    margin: 2rem 0;
}

.content_a169 {
    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 */
.selected-d0d8 {
    padding: var(--section-padding);
}

.lower_490e {
    margin-top: 1rem;
}

.fixed-71b2 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.fixed-71b2 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.fixed-71b2 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.summary_bottom_5d35 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.slider-silver-8acc {
    margin: 2rem 0;
}

.background_9ebf {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.liquid-77a8 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.tall_854a {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.progress_8fbd {
    margin: 2rem 0;
}

.layout-dirty-58c8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.layout-dirty-58c8 .advanced-20c4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.label-2b07 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .label-2b07 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gold_5a0f {
    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);
}

.hover_paper_2c64 {
    color: var(--text-white);
    font-weight: 600;
}

.blue-6f18 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.fresh_39f5 {
    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);
}

.fresh_39f5 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.media_60df {
    padding: var(--section-padding);
}

.up-4e35 {
    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;
}

.up-4e35:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.active_98ce {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.active_98ce .fast_d48e {
    font-size: 2rem;
    flex-shrink: 0;
}

.active_98ce .brown_b5d1 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.old_f0e1 {
    flex: 1;
}

.warm_39f6 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.outline_pressed_caa4 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.outline_pressed_caa4 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.outline_pressed_caa4 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.yellow-5345 {
    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);
}

.yellow-5345 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.yellow-5345 strong {
    color: var(--warning-color);
}

/* Slots Section */
.solid-06b0 {
    padding: var(--section-padding);
}

.dropdown-bfde {
    margin: 2rem 0;
}

/* Table Games Section */
.paragraph_d212 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.paragraph-focused-e707 {
    margin: 2rem 0;
}

.warm-1f7a {
    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);
}

.warm-1f7a:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.warm-1f7a .accordion_east_66fa {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.warm-1f7a .brown_43dd {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.caption_b36d {
    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);
}

.caption_b36d .popup-middle-30fb {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.panel_top_e190 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.description_motion_ee46 {
    margin: 2rem 0;
}

.backdrop-55f3 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.article_271a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.caption_hard_c3a8 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.card_e9f0 {
    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);
}

.card_e9f0:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.card_e9f0.fn-active-8929 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.feature-in-614e {
    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);
}

.over-358c {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.over-358c strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.input-soft-e8fa {
    padding: var(--section-padding);
}

.mini-b86e {
    margin: 2rem 0;
}

.narrow_b665 {
    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);
}

.narrow_b665:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .narrow_b665 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.row_952d {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.preview_32f4 {
    flex: 1;
}

.accordion-d278 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.iron-785a {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.mask_cold_61f4 {
    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;
}

.image-center-1a02 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.brown_a52f {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.active_55b1 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.purple-223a {
    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;
}

.purple-223a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.panel_f4f1 {
    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);
}

.icon_over_7239 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.icon_over_7239 strong {
    color: var(--accent-color);
}

/* New Games Section */
.dynamic_8b4b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.black_8e44 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .black_8e44 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .black_8e44 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.element-6b6c {
    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;
}

.element-6b6c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.cool-bff6 {
    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;
}

.short-885d {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.tertiary_b05a {
    font-size: 2rem;
}

.info-fresh-5544 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.footer-paper-856f {
    flex: 1;
}

.video-medium-681d {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.container-gas-4a69 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.prev-4b3b {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.pattern-bottom-9d76 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.dynamic_5e0f {
    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;
}

.black-50da {
    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;
}

.black-50da:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.content-inner-36f8 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shade_7fe7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.sort_380c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .sort_380c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.up_eaa5 {
    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);
}

.banner_cold_df78 {
    color: var(--text-white);
    font-weight: 600;
}

.new_bf05 {
    color: var(--accent-color);
    font-weight: 600;
}

.widget_e34b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.widget_e34b strong {
    color: var(--accent-color);
}

/* Security Section */
.plasma-aedb {
    padding: var(--section-padding);
}

/* Benefits Section */
.section_1512 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.steel-6a6c {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.table_motion_cde8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.simple-f91e {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.surface_77bc {
    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) {
    .surface_77bc {
        flex-direction: column;
        gap: 1rem;
    }
}

.surface_77bc:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.surface_77bc .wrapper-9d8b {
    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;
}

.surface_77bc .soft-5ff4 {
    flex: 1;
}

.surface_77bc .texture-fda7 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.surface_77bc .box_bottom_200f {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.center-1c1f {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.center-1c1f .notification_8343 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.center-1c1f .short_6db3 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.center-1c1f .short_6db3 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.center-1c1f .short_6db3 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.form-hovered-8db9 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.aside-hovered-8e5a {
    padding: var(--section-padding);
}

.article-3e9c {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .article-3e9c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tertiary_3061 {
    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);
}

.tertiary_3061:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.tertiary_3061 .shadow-bright-ebb0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tertiary_3061 .center-39bc {
    flex: 1;
}

.tertiary_3061 .column-easy-888d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tertiary_3061 .video_6aeb {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.bottom_f173 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.bottom_f173 .logo-action-1ea8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.bottom_f173 .dark_34d0 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.bottom_f173 .dark_34d0 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);
}

.bottom_f173 .dark_34d0 li:last-child {
    border-bottom: none;
}

.bottom_f173 .dark_34d0 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;
}

.bottom_f173 .dark_34d0 li strong {
    color: var(--text-white);
}

.tertiary-583c {
    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);
}

.tertiary-583c p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.tertiary-583c strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.secondary-west-9f11 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.nav_wood_bf3d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .nav_wood_bf3d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dropdown_6b27 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.dropdown_6b27:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.pink_5823 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.outline-outer-a1c8 {
    font-size: 2rem;
}

.secondary_slow_ebdd {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.grid_large_dee3 {
    flex: 1;
}

.layout_wood_d190 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.layout_wood_d190 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.layout_wood_d190 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.search-yellow-e7b3 {
    margin-top: 3rem;
}

.secondary-lower-85e3 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.complex-4dce {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-light-a53d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-light-a53d li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.footer-light-a53d li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.footer-light-a53d li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.border-7a9a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.static_d520 {
    margin: 2rem 0;
}

.overlay-bf1c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.overlay-bf1c .advanced-20c4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.link-fe35 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .link-fe35 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.disabled-880d {
    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);
}

.disabled-880d:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.form-east-e6ba {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stone-df60 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.out-e2af {
    padding: var(--section-padding);
}

.tabs_4892 {
    margin: 2rem 0;
}

.highlight-green-c3ea {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .highlight-green-c3ea {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .highlight-green-c3ea {
        grid-template-columns: repeat(3, 1fr);
    }
}

.steel_b51d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.steel_b51d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.full_cc22 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.hero-upper-9b76 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.tertiary-pro-fa61 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.tertiary-pro-fa61.hero-eee0 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.tooltip-red-5145 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.menu-59ef {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.pattern-f20b {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.secondary-pink-05ef {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.button_plasma_3663 {
    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);
}

.button_plasma_3663 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.button_plasma_3663 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.menu-fixed-e678 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.over-f3db {
    margin: 2rem 0;
}

.rough-d2f3 {
    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) {
    .rough-d2f3 {
        flex-direction: column;
        gap: 1rem;
    }
}

.rough-d2f3:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.rough-d2f3::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);
}

.avatar-solid-bdd2 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.center_6b04 {
    flex: 1;
}

.feature-6c3b {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.outline-9e0f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.outline-9e0f li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.notification-29e9 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.breadcrumb_ffcd {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.gallery_stale_c3fb {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .gallery_stale_c3fb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.notification_ee44 {
    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);
}

.thumbnail-9f51 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.search-7b5e {
    flex: 1;
}

.notification_medium_2e91 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.shade_narrow_e7cd {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.pattern_6568 {
    margin-top: 2rem;
    text-align: center;
}

.component_c9e5 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.component_c9e5 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.prev-6e17 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .prev-6e17 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.backdrop-4e7a {
    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);
}

.backdrop-4e7a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.backdrop-4e7a .backdrop-e77e {
    font-size: 2rem;
    flex-shrink: 0;
}

.backdrop-4e7a .pattern-7876 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.backdrop-4e7a .highlight-brown-c969 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.backdrop-4e7a .filter_current_83f8 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.current_939d {
    padding: var(--section-padding);
}

.modal-9082 .background-177c {
    flex: 1;
}

/* Promo Calendar Section */
.grid_5408 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.background_0f4b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .background_0f4b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.status_clean_0375 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.video_6d50 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.dim_d17c {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card_wide_0b8d {
    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);
}

.pattern-pro-fbc7 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.large_e38e {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.title-0467 {
    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);
}

.title-0467 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.title-0467 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.box-fluid-0894 {
    padding: var(--section-padding);
}

.module_e8b6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .module_e8b6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.shade-a200 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shade-9501 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.top_1b7f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.top_1b7f li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.image-motion-05e8 {
    margin-top: 3rem;
}

.image-motion-05e8 .secondary-lower-85e3 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.image-motion-05e8 .complex-4dce {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.image-motion-05e8 .footer-light-a53d {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.image-motion-05e8 .footer-light-a53d li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.image-motion-05e8 .footer-light-a53d li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.image-motion-05e8 .footer-light-a53d li strong {
    color: var(--warning-color);
}

.black-2a4e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.black-2a4e strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.title_out_3ecf {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.lite-53b1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .lite-53b1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hidden-247c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hidden-247c .advanced-20c4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.lower-cd66 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.search_a78c {
    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);
}

.search_a78c:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.orange-cb09 {
    font-size: 2rem;
    flex-shrink: 0;
}

.easy-5bcc {
    flex: 1;
}

.content_purple_1eb3 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.avatar_narrow_0de6 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.slider_5024 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.container_orange_ecec {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.accent_b9de {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .accent_b9de {
        grid-template-columns: repeat(4, 1fr);
    }
}

.detail_c29a {
    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);
}

.detail_c29a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.card-small-0f24 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.feature-hovered-51a5 {
    color: var(--text-gray);
    font-size: 1rem;
}

.last-e740 {
    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);
}

.solid_bcce {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.solid_bcce strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.dark-3467 { 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; }
.sort_left_c859, .highlight_230e { max-width:100%; height:auto; }

.header-east-e804, .background-9734, .overlay-old-d1c4 { white-space:normal; }

.feature-2cbd,
.article_b305,
.carousel-187e,
.prev-6e17,
.backdrop-3021,
.tertiary-hovered-7ac7 {
  flex-wrap:wrap;
}

[class*="grid"],
.accent_b9de,
.highlight-green-c3ea,
.popup_soft_5e3b {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.fresh_86b3 img,
.article_b305 img,
.paragraph_5ab1 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.right-4c82, .mini-8f03,
.green-93f8, .overlay_hovered_648a {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.background-pink-facc { width:100%; overflow-x:auto; }
.background-pink-facc table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.slider_over_6d9f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .slider_over_6d9f {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.image-1694 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.mask-white-7fbd,
.alert_e14b,
.black_d9f2,
.column_af59,
.tall-9da5,
.accent_b9de,
.highlight-green-c3ea,
.popup_soft_5e3b,
.image-in-b892,
.mini-b86e,
.slider_over_6d9f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .mask-white-7fbd,
  .alert_e14b,
  .black_d9f2,
  .column_af59,
  .tall-9da5,
  .accent_b9de,
  .highlight-green-c3ea,
  .popup_soft_5e3b,
  .image-in-b892,
  .mini-b86e,
  .slider_over_6d9f {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.inner_6e29,
.avatar-out-9b40,
.detail_c29a,
.tall-2d18,
.steel_b51d,
.aside_basic_53e5,
.narrow_b665,
.image-1694 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.content_hard_ad5c,
.article-blue-794a,
.photo-dynamic-7f60 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.content_hard_ad5c > *,
.article-blue-794a > *,
.photo-dynamic-7f60 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 1040 */
.widget-item-x2 {
  padding: 0.1rem;
  font-size: 12px;
  line-height: 1.3;
}
