/* {$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;
}

.hovered_d60d {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.stale-5c44 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .stale-5c44 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .stale-5c44 {
        padding: 0 2rem;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--text-white);
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.875rem);
    color: var(--accent-color);
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

strong {
    color: var(--accent-color);
    font-weight: 600;
}

/* Header Styles */
.video_483d {
    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);
}

.media_70f8 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .media_70f8 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .mask-fd5d {
        grid-column: 1;
    }
    
    .column-6588 {
        grid-column: 2;
    }
    
    .out_6f34 {
        grid-column: 3;
    }
}

.mask-fd5d img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.mask-fd5d:hover img {
    transform: scale(1.05);
}

/* Navigation */
.thick-627b {
    display: none;
}

@media (min-width: 1024px) {
    .thick-627b {
        display: block;
    }
}

/* Grouped Navigation */
.overlay_683c {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.small_df91 {
    position: relative;
}

.tabs_right_5db4 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.small_df91 .hero-down-416f {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.hero-down-416f {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.secondary-45f8 {
    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;
}

.secondary-45f8:hover,
.secondary-45f8.fn-active-5d2f {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.label_green_5aab {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .label_green_5aab {
        display: flex;
    }
}

/* Mobile Register Button */
.column-6588 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .column-6588 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.dynamic-1be4 {
    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;
}

.dynamic-1be4::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 */
.out_6f34 {
    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) {
    .out_6f34 {
        display: none;
    }
}

.out_6f34 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.out_6f34.fn-active-5d2f span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.out_6f34.fn-active-5d2f span:nth-child(2) {
    opacity: 0;
}

.out_6f34.fn-active-5d2f span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.center-5dc6 {
    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;
}

.center-5dc6.fn-active-5d2f {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.info_d5ae {
    overflow: hidden;
}

.overlay_707e {
    list-style: none;
    padding: 0.75rem 0;
}

.section-9129 {
    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;
}

.section-9129:hover,
.section-9129.fn-active-5d2f {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.section-9129.silver_4aa7 {
    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;
}

.section-9129.silver_4aa7::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 */
.smooth_2384 {
    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;
}

.motion_e212 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.motion_e212:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.south_64ad {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.south_64ad:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.element_809e {
    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;
}

.element_809e:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.badge_712c {
    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;
}

.footer-hard-f165 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.footer-hard-f165:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.fluid_ae0f {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.fluid_ae0f:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.narrow-7e88 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.narrow-7e88:hover {
    background: linear-gradient(135deg, var(--info-color), var(--accent-color));
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.4);
}

.popup_b756 {
    font-size: 1em;
    font-weight: 700;
}

.text_easy_7780 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.media_97fb {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.media_97fb::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;
}

.modal_62b0 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .modal_62b0 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.yellow-9157 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.border_fe48 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hidden-60b1 {
    margin-bottom: 2rem;
}

.dropdown_purple_d12a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .dropdown_purple_d12a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accordion-medium-9da1 {
    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);
}

.row_motion_3122 {
    font-size: 1.5rem;
}

.logo-ecc6 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.background-middle-9857 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav_action_8367 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.nav_action_8367:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.layout_prev_b9f7 {
    text-align: center;
    margin-bottom: 3rem;
}

.preview_17fa {
    margin-bottom: 1rem;
}

.detail_next_bdd6 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.gradient-gold-4568 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .gradient-gold-4568 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .gradient-gold-4568.hot_0cf0 {
        direction: rtl;
    }
    
    .gradient-gold-4568.hot_0cf0 > * {
        direction: ltr;
    }
}

.lite_8c1e {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.lite_8c1e:first-child {
    margin-top: 0;
}

.nav_d1ce {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.background_8c61 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.background_8c61:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.detail-copper-dc58 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .detail-copper-dc58 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.title-c2de {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.mask_ae52 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.new-be50 {
    list-style: none;
}

.new-be50 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.new-be50 li:last-child {
    border-bottom: none;
}

/* Games Features */
.title_dynamic_80c1 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.chip-advanced-c41d {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.header-332a {
    font-size: 2rem;
    flex-shrink: 0;
}

.header-pressed-1a56 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tag_b7e8 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.narrow-490d {
    margin: 2rem 0;
}

.paper-5020 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.background-d17d {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.wood-b31d {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.card-red-f6c3 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.fluid_a369 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fluid_a369 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.motion_cd5e {
    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);
}

.motion_cd5e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.mini-8f4d {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.narrow_745b {
    font-size: 1.5rem;
}

.fast_992c {
    color: var(--accent-color);
    margin: 0;
}

.link-3d09 {
    list-style: none;
}

.link-3d09 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.link-3d09 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.icon-8edf {
    margin: 2rem 0;
}

.status_6010 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.warm-52ef {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .warm-52ef {
        grid-template-columns: repeat(4, 1fr);
    }
}

.modal_a0d5 {
    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);
}

.red_9b63 {
    font-size: 1.25rem;
}

.pink_d971 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.blue-4a33,
.breadcrumb_out_5b37 {
    text-align: center;
    margin: 2rem 0;
}

.menu_7d6e,
.disabled_a103 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.brown-2e30 {
    margin: 2rem 0;
    text-align: center;
}

.tabs_46c1 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tabs_46c1::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;
}

.tooltip_c9b1 {
    position: relative;
    z-index: 1;
}

.notice_c2fe {
    margin-bottom: 1rem;
}

.notice_7275 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.outline_rough_5c7d {
    margin-bottom: 3rem;
}

.button-58dd {
    margin-top: 3rem;
}

.highlight_solid_d63e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .highlight_solid_d63e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.highlight_solid_d63e .accordion-medium-9da1 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.modal_warm_b088 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.red_1dad {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.carousel-focused-cb22 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.hero_short_7f96 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .hero_short_7f96 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero_short_7f96 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.lower_01d4 {
    margin-bottom: 1rem;
}

.image_old_fb6b img {
    margin-bottom: 1rem;
}

.secondary-wide-b14a {
    color: var(--text-gray);
    line-height: 1.6;
}

.title-06da {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.heading-65fa {
    list-style: none;
}

.heading-65fa li {
    margin-bottom: 0.5rem;
}

.heading-65fa a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.heading-65fa a:hover {
    color: var(--accent-color);
}

.wood-7f07 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.last_3563 {
    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);
}

.last_3563:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.paper-e4ea {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.paper-e4ea p {
    margin-bottom: 0.25rem;
}

.popup_7a52 {
    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) {
    .popup_7a52 {
        flex-direction: row;
    }
}

.main_glass_34f7 {
    text-align: center;
}

@media (min-width: 768px) {
    .main_glass_34f7 {
        text-align: left;
    }
}

.main_glass_34f7 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.frame_basic_0f1d {
    font-size: 0.75rem !important;
}

.tall-1e72 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.easy_f587 {
    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);
    }
}

.icon-fc51 {
    animation: fadeInUp 0.6s ease-out;
}

.liquid_e7ad {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.focus_out_6cb1 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .focus_out_6cb1 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.grid_soft_e4e5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .grid_soft_e4e5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.picture_easy_7720 {
    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);
}

.picture_easy_7720 .header-332a {
    font-size: 1.25rem;
}

.picture_easy_7720 .search_silver_b642 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.mask-north-06c3 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .mask-north-06c3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.focus-a906 {
    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);
}

.focus-a906:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.item-lite-5684 {
    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);
}

.slider_hot_9c1f {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.cool_41ad {
    color: var(--text-gray);
    line-height: 1.6;
}

.notification_new_8157 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tooltip-up-7158 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.tooltip-up-7158 .header-pressed-1a56 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tooltip-up-7158 .tag_b7e8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tag-clean-4362 {
    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);
}

.yellow-c5c7 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.yellow-c5c7 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.yellow-c5c7 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.huge_e758 {
    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);
}

.thick_3c73 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.container_cab7 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.container_cab7 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.container_cab7 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);
}

.container_cab7 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.container_cab7 input::placeholder {
    color: var(--text-muted);
}

.item-hovered-c0eb {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.brown_8ef5 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.brown_8ef5 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.lite_6fe5 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.lite_6fe5:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.warm-52ef {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .warm-52ef {
        grid-template-columns: repeat(4, 1fr);
    }
}

.modal_a0d5 {
    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);
}

.modal_a0d5 .red_9b63 {
    font-size: 1.25rem;
}

.modal_a0d5 .pink_d971 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.image_static_45fa {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.fluid_f5db {
    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);
}

.fluid_f5db .header-332a {
    font-size: 2rem;
    flex-shrink: 0;
}

.fluid_f5db .header-pressed-1a56 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.fluid_f5db .tag_b7e8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.preview-last-c076 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.box-basic-7769 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.box-basic-7769 .title-current-8ee3 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.box-basic-7769 .sidebar_ec13 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tiny-eb65 {
    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);
}

.east-d3c5 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .east-d3c5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tertiary-543d {
    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);
}

.tertiary-543d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.form-lite-5f14 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.accordion_white_efef {
    flex: 1;
}

.highlight-59f1 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.focus_9361 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.red_1583 {
    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);
}

.red_1583:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.accent_eef3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accent_eef3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.under_14c3 {
    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);
}

.under_14c3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.out-520f {
    font-size: 2rem;
    flex-shrink: 0;
}

.dropdown_7033 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.heading_e459 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.banner-889d {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.gas_bc27 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.video_7207 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.panel_cd58 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.panel_cd58 .panel_last_76b0 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.panel_cd58 .info-8286 {
    color: var(--text-gray);
    line-height: 1.6;
}

.image-c7cc {
    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);
}

.layout_prev_a5ed {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.outline-1936 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.outline-1936 .header-332a {
    font-size: 2rem;
    flex-shrink: 0;
}

.outline-1936 .header-pressed-1a56 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.outline-1936 .tag_b7e8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.surface_b225 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .surface_b225 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.row_8b7f {
    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);
}

.row_8b7f:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.full_2c59 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .full_2c59 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer_9992 {
    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);
}

.footer_9992:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.label-6d5b {
    font-size: 2rem;
    flex-shrink: 0;
}

.tag-a9a7 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.background-d17d {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.dynamic_2258 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.info_81f3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.link_full_0a51 {
    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);
}

.link_full_0a51:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.element_hard_a1b4 {
    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);
}

.bright_b6aa {
    flex: 1;
}

.pattern-advanced-059e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.list_0d8e {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.backdrop-a0a2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.item_6c06 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.shade_silver_9071 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shade_silver_9071 .title-current-8ee3 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.shade_silver_9071 .sidebar_ec13 {
    color: var(--text-gray);
    line-height: 1.6;
}

.breadcrumb_out_5b37 {
    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);
}

.short_e1e5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .short_e1e5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.video-77cb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .video-77cb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pink-c174 {
    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);
}

.pink-c174:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.container-6850 {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-a8a4 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.glass_3622 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.box_ed4c {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.notification_e17b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.west_30dc {
    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);
}

.copper-4aff {
    font-size: 2rem;
    flex-shrink: 0;
}

.slider-white-57b5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.logo-7686 {
    color: var(--text-gray);
    line-height: 1.6;
}

.layout_prev_a5ed {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.outline-1936 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.outline-1936 .header-pressed-1a56 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.outline-1936 .tag_b7e8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.input-4d63 {
    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);
}

.card_down_9f7c {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .card_down_9f7c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .card_down_9f7c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.heading-pink-0d27 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.heading-pink-0d27:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.frame_wide_1e6e {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.header-dirty-d027 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.status-3f1b {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.item-smooth-7fd8 {
    padding: 1.5rem;
}

.video_fast_bc77 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.dropdown-c56a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-c56a 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;
}

.dropdown-c56a li:last-child {
    border-bottom: none;
}

.dropdown-c56a li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.box-black-a8f3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .box-black-a8f3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.form_cool_cfbd {
    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);
}

.form_cool_cfbd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.mask_last_b469 {
    font-size: 2rem;
    flex-shrink: 0;
}

.mask_tiny_efad {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.picture-bronze-bdb4 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.border-65db {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.box-73b1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.preview_c4b9 {
    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);
}

.bottom_c726 {
    font-size: 2rem;
    flex-shrink: 0;
}

.north-a486 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tertiary_ed5e {
    color: var(--text-gray);
    line-height: 1.6;
}

.element-3dee {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.panel_active_9feb {
    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);
}

.static_bab0 {
    text-align: center;
}

.shadow_d0fa {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.main_focused_3955 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.pagination_bb51 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.steel-e51c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.steel-e51c .header-pressed-1a56 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.steel-e51c .tag_b7e8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.article_dd75 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .article_dd75 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .article_dd75 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dark-a143 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.dark-a143:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.header-soft-2c35 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.feature-cool-66c8 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.header-pressed-1a56 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.steel_cf74 {
    padding: 1.5rem;
}

.tag_b7e8 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.paragraph_dynamic_4499 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.paragraph_dynamic_4499 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;
}

.paragraph_dynamic_4499 li:last-child {
    border-bottom: none;
}

.paragraph_dynamic_4499 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.current_bb9a {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.progress_5135 {
    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);
}

.progress_5135:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gallery_bd9d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pink-bee0 {
    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);
}

.item-lite-5684 {
    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;
}

.slider_hot_9c1f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.cool_41ad {
    color: var(--text-gray);
    line-height: 1.6;
}

.menu_40f6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wood_4ffd {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.button_2d65 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tabs-light-1ff0 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.component_cool_eccb {
    display: flex;
    gap: 1rem;
}

.component_cool_eccb .plasma_cfcc {
    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;
}

.hard_682b {
    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);
}

.card_e6e8 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.badge-7391 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.badge-7391 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;
}

.badge-7391 li:last-child {
    border-bottom: none;
}

.badge-7391 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.list_bronze_e229 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .list_bronze_e229 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .list_bronze_e229 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.box_e1b8 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.box_e1b8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.motion_fd74 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.smooth_dfd5 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.panel_last_76b0 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.pattern_199d {
    font-size: 1rem;
}

.layout-c44d {
    padding: 1.5rem;
}

.info-8286 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.link-plasma-0761 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.link-plasma-0761 .static_bab0 {
    text-align: center;
}

.link-plasma-0761 .main_focused_3955 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.link-plasma-0761 .border-over-90dd {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.basic_2323 {
    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);
}

.basic_2323:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.bottom-9af7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .bottom-9af7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.message-46ea {
    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);
}

.message-46ea:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.chip_5b92 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.media_5adb {
    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);
}

.black_0870 {
    font-size: 2rem;
    flex-shrink: 0;
}

.carousel_selected_f1d5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.paragraph-dark-e173 {
    color: var(--text-gray);
    line-height: 1.6;
}

.carousel-active-8f9a {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.sort_af09 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gold-e5b0 {
    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);
}

.white_eaf2 {
    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;
}

.white_eaf2.static-6f80 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.white_eaf2.light_2c96 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.white_eaf2.logo-fast-e469 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.white_eaf2.out_506e {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.white_eaf2.pro_2c1c {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.mini-62e4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.upper_49d8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.black-aca0 {
    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);
}

.current-880c {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.preview-last-c076 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.preview-last-c076 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;
}

.preview-last-c076 li:last-child {
    border-bottom: none;
}

.preview-last-c076 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.description-orange-02d3 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .description-orange-02d3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .description-orange-02d3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.search_prev_3efa {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.search_prev_3efa:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.search_prev_3efa.copper_27c7 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .search_prev_3efa.copper_27c7 {
        grid-column: span 3;
    }
}

.panel-5eed {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.search_prev_3efa.copper_27c7 .panel-5eed {
    background: rgba(6, 182, 212, 0.1);
}

.fresh-4670 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.pro-9f53 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.search_prev_3efa.copper_27c7 .pro-9f53 {
    color: var(--info-color);
}

.basic_f8ae {
    padding: 1.5rem;
    text-align: center;
}

.summary-5f9e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.search_prev_3efa.copper_27c7 .summary-5f9e {
    color: var(--info-color);
}

.info-short-8d97 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.chip_5faa {
    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 */
.container_fbfc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .container_fbfc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.column-824c {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.column-824c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.dropdown-fresh-3ebc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.fluid_f5db {
    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);
}

.red_9b63 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hidden-cold-5cd1 {
    flex: 1;
}

.status_6010 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.search-61ec {
    color: var(--text-gray);
    line-height: 1.6;
}

.hot-1998 {
    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);
}

.secondary_66f7 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.avatar-cead {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.easy_f587 {
    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);
}

.sidebar_orange_9ad6 {
  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);
}

.sidebar_orange_9ad6 .static_bab0 {
    text-align: center;
}

.sidebar_orange_9ad6 .shadow_d0fa {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.sidebar_orange_9ad6 .main_focused_3955 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.middle-64c5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.card-dark-b798 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hero_703d {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hard_6a18 {
    color: var(--text-gray);
    line-height: 1.6;
}

.header_bottom_a009 {
    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);
}

.content-static-bff8 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.table-cba6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.shadow-dim-2a32 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .shadow-dim-2a32 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .shadow-dim-2a32 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.button-in-7b94 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.button-in-7b94:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.button-current-e1ad {
    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);
}

.clean_1e73 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.info_e4ed {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.hover_yellow_7e1d {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hover_yellow_7e1d.hero-7a1a {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.hover_yellow_7e1d.yellow_1382 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.hover_yellow_7e1d.notification_dynamic_7f6e {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.gallery-6502 {
    padding: 1.5rem;
    text-align: center;
}

.media_2967 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pagination_outer_13e4 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.pagination_outer_13e4 .active-active-c01e {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.filter-advanced-8634 {
    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);
}

.filter-advanced-8634:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.text_40e1 {
  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);
}

.huge-f0de {
    text-align: center;
}

.huge-f0de .shadow_d0fa {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.huge-f0de .main_focused_3955 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.avatar_green_f540 { text-align: center; }
.column_current_39af { text-align: left; }
.card-5cc0 { text-align: right; }

.upper_2b98 { margin-bottom: 0; }
.sort_plasma_1281 { margin-bottom: 0.5rem; }
.west-bd21 { margin-bottom: 1rem; }
.north-9ed7 { margin-bottom: 1.5rem; }
.info-active-3d60 { margin-bottom: 2rem; }

.easy-f955 { margin-top: 0; }
.picture_7b94 { margin-top: 0.5rem; }
.container_old_5059 { margin-top: 1rem; }
.text-c5b9 { margin-top: 1.5rem; }
.under_1057 { margin-top: 2rem; }

.fn-hidden-5d2f { display: none; }
.fn-visible-5d2f { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .media_97fb {
        padding: 6rem 0 3rem;
    }
    
    .modal_62b0 {
        text-align: center;
    }
    
    .gradient-gold-4568 {
        text-align: center;
    }
    
    .dropdown_purple_d12a {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .video_483d,
    .center-5dc6,
    .tabs_46c1,
    .carousel-focused-cb22 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .media_97fb {
        background: none;
    }
}

/* Providers Section */
.surface_cedd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.outline-44d8 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .outline-44d8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .outline-44d8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.background_current_9e2d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.background_current_9e2d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.progress-action-87b9 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.photo-hard-6ac1 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.component-4656 {
    list-style: none;
    padding: 0;
}

.component-4656 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.component-4656 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.search_yellow_4876 {
    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);
}

.search_yellow_4876 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.preview-clean-3645 {
    padding: var(--section-padding);
}

.wide-bd92 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .wide-bd92 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.menu_3838 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.menu_3838:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.summary-hard-8a23 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.right-6b4f {
    display: flex;
    flex-direction: column;
}

.description-new-5cd7 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.pressed_5d93 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.picture_simple_8c5d {
    color: var(--accent-color);
}

.backdrop_b7d7 {
    font-size: 1.25rem;
}

.heading-black-e248 {
    margin-bottom: 1rem;
}

.heading-black-e248 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.module-smooth-d9d5 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.banner-6bc6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.static_bab0 {
    text-align: center;
}

.shadow_d0fa {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.main_focused_3955 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.warm-9d04 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.text_middle_8727 {
    margin: 2rem 0;
}

.bright_0e78 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.bright_0e78 .header-332a {
    font-size: 2rem;
    flex-shrink: 0;
}

.popup-1440 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.tertiary-a998 {
    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;
}

.tertiary-a998:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.table-e297 {
    font-size: 2rem;
}

.gas_8fe6 {
    display: flex;
    flex-direction: column;
}

.avatar-smooth-64bb {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.tall_5928 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.dark-13db {
    padding: var(--section-padding);
}

.item_a1d5 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .item_a1d5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .item_a1d5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.selected_244b {
    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);
}

.selected_244b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.selected_244b .shadow_d0fa {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.selected_244b .main_focused_3955 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.selected_244b .row-mini-52ec {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.gradient_next_1c9e {
    margin-top: 4rem;
}

.detail-cold-f543 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.tall-95bd {
    overflow-x: auto;
}

.highlight-d45e {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.highlight-d45e thead {
    background: var(--accent-color);
}

.highlight-d45e th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.highlight-d45e td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.highlight-d45e tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.highlight-d45e tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.out_a944 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.modal-tall-91f3 {
    max-width: 900px;
    margin: 0 auto;
}

.outer-ed71 {
    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);
}

.outer-ed71:hover {
    border-color: var(--accent-color);
}

.advanced-c29f {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.advanced-c29f h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.button_south_c388 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.outer-ed71.fn-active-5d2f .button_south_c388 {
    transform: rotate(45deg);
}

.overlay-soft-edb6 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.outer-ed71.fn-active-5d2f .overlay-soft-edb6 {
    max-height: 1000px;
}

.overlay-soft-edb6 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.alert-c11f {
    padding: var(--section-padding);
}

.yellow-c5c7 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.yellow-5595 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.icon-brown-798e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .icon-brown-798e {
        grid-template-columns: repeat(2, 1fr);
    }
}

.main_7032 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tertiary-hot-6217 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.overlay-b0dc {
    font-size: 2rem;
}

.soft-e634 {
    color: var(--text-white);
    margin: 0;
}

.gallery_hard_2a88 {
    list-style: none;
    padding: 0;
}

.gallery_hard_2a88 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery_hard_2a88 li:last-child {
    border-bottom: none;
}

.new-90ed {
    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);
}

.new-90ed p {
    color: var(--success-color);
    margin: 0;
}

.breadcrumb-north-c81f {
    margin-top: 3rem;
}

.card_e6e8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.aside-d3ab {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .aside-d3ab {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hero-c7ff {
    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);
}

.complex-6b9a {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.hero-c7ff p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.item_plasma_08e6 {
    padding: var(--section-padding);
}

.active_06ad {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .active_06ad {
        grid-template-columns: repeat(3, 1fr);
    }
}

.button_dim_c728 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.button_dim_c728:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.disabled_light_dd33 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.rough_1835 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.cool-2727 {
    flex: 1;
}

.surface-purple-ba3a {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.filter-eee1 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.narrow-c1c1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.row-66ac {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.row-66ac:last-child {
    border-bottom: none;
}

/* Comparison Section */
.bronze-7109 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.rough-6f9d {
    padding: var(--section-padding);
}

.fluid-a773 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.outline_paper_54bd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .outline_paper_54bd {
        grid-template-columns: repeat(3, 1fr);
    }
}

.rough-f2b3 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.notification-2c74, .center_c322, .caption_a4b5 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.caption_a4b5 {
    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 */
.panel-05fa {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.black_cf33 {
    margin: 2rem 0;
}

.widget_pressed_d758 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.surface_61ca {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.article-2e46 {
    list-style: none;
    padding: 0;
}

.article-2e46 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;
}

.article-2e46 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.article-2e46 li:last-child {
    border-bottom: none;
}

.sort-5bdc {
    text-align: center;
    margin-top: 2rem;
}

.content_red_0b69 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.paper_d59e {
    padding: var(--section-padding);
}

.hovered_3063 {
    margin: 2rem 0;
}

.wide-067d {
    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) {
    .wide-067d {
        flex-direction: column;
        align-items: flex-start;
    }
}

.wide-067d:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.gallery_e56c {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.mask-5356 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.banner-3a41 {
    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;
}

.cool_0ef7 {
    flex: 1;
}

.button_dynamic_195e {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.carousel-tiny-aca3 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.surface-tiny-4f48 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.preview_173c {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .preview_173c {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.white_247b {
    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);
}

.white_247b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.white_247b .shadow_d0fa {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.white_247b .main_focused_3955 {
    color: var(--text-gray);
    font-size: 1rem;
}

.sort_gold_6536 {
    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);
}

.paper-7e2d {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.paper-7e2d strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.medium_bc73 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .medium_bc73 {
        grid-template-columns: 1fr 1fr;
    }
}

.gallery_394d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.steel_dd67 {
    margin-bottom: 1.5rem;
}

.steel_dd67 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.steel_dd67 input,
.steel_dd67 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;
}

.steel_dd67 input:focus,
.steel_dd67 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.content_small_a60e {
    width: 100%;
    margin-top: 1rem;
}

.picture-9838 {
    display: flex;
    align-items: center;
}

.tooltip_active_7aba {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.white_f0bf {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.video_d1d2 {
    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;
}

.alert_9b34 {
    color: var(--text-gray);
}

.wrapper-bf57 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.outline-e696 {
    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);
}

.outline-e696 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.gallery-up-20e5 {
    margin-top: 3rem;
}

.active_full_c2eb {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.logo-062a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.message-83dd {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.summary_a6f9 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary_a6f9:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.tabs_9ab8 {
    padding: var(--section-padding);
}

.left-e678 {
    margin: 2rem 0;
}

.stale-53d6 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.complex_8a1e {
    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;
}

.complex_8a1e:hover, .complex_8a1e.fn-active-5d2f {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.dropdown-12da {
    display: none;
}

.dropdown-12da.fn-active-5d2f {
    display: block;
}

.focus_left_0b0e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.content_fixed_f110 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.text-tall-08ec h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.text-tall-08ec ul {
    list-style: none;
    padding: 0;
}

.text-tall-08ec ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.text-tall-08ec ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.hover-024f {
    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 */
.summary-iron-f283 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.sidebar-warm-9f87 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.table-8fd5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.video_64d6 {
    color: var(--accent-color);
    margin: 0;
}

.media_fluid_41a2 {
    display: flex;
    gap: 1.5rem;
}

.focused-9a15 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.detail_a3e3 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.heading-3288 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.heading-3288.sort_middle_fcee {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.heading-3288.search_2bdf {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.heading-3288.static_b67c {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.dirty-0439 {
    margin-top: 2rem;
}

.notification_hard_a73a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.pagination-7bec {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .pagination-7bec {
        grid-template-columns: repeat(4, 1fr);
    }
}

.outer-80ef {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.alert_17c6 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.dirty_1b63 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.wide_aaff {
    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 */
.selected_b141 {
    padding: var(--section-padding);
}

.outer-02b8 {
    margin: 2rem 0;
}

.aside_iron_9d7c {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.outline_593e {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.thick_b6b0 {
    list-style: none;
    padding: 0;
}

.thick_b6b0 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;
}

.thick_b6b0 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.thick_b6b0 li:last-child {
    border-bottom: none;
}

.huge-aec5 {
    margin: 2rem 0;
}

.copper-64fe {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.lower_ced9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .lower_ced9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.article_2146 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.west_bd78 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.smooth_0f60 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.image-ae46 {
    margin-top: 2rem;
}

.highlight-59f1 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.south-9b69 {
    list-style: none;
    padding: 0;
}

.content_advanced_e715 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.content_advanced_e715 a {
    color: var(--accent-color);
    text-decoration: none;
}

.content_advanced_e715 a:hover {
    text-decoration: underline;
}

.thick-2c91 {
    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 */
.tertiary-2c71 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.layout_medium_d9b0 {
    margin: 2rem 0;
}

.avatar-purple-1ed6 {
    margin-bottom: 3rem;
}

.avatar-purple-1ed6 .surface_61ca {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.breadcrumb-up-d1a0 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.row-4cd0 {
    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);
}

.row-4cd0:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.large_6c01 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .large_6c01 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.list_black_1583 {
    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 */
.hidden-8d66 {
    padding: var(--section-padding);
}

.dropdown-ab10 {
    margin: 2rem 0;
}

.element-e443 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.paper_20c3 {
    overflow-x: auto;
    margin: 2rem 0;
}

.next-ab09 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.nav_cd8d {
    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;
}

.hovered_6a63 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.outer_8a3b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .outer_8a3b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sort-fda0 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.sort-fda0 .header-332a {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.sort-fda0 .header-pressed-1a56 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.shadow_next_dd87 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.tertiary_53db {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.full_f17e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .full_f17e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.main-3f2e {
    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;
}

.main-3f2e:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.warm-9ceb {
    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);
}

.west-1fec {
    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;
}

.photo_thick_2016 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.fast-0c6d {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.nav-bright-886e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.inner-c4e3 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.overlay_light_febd {
    color: var(--text-white);
    font-weight: 600;
}

.west-9ab3 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.card_short_7722 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.card_short_7722 .plasma_cfcc {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.pink-a289 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .pink-a289 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery_446a {
    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);
}

.gallery_446a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.gallery_446a .shadow_d0fa {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.gallery_446a .main_focused_3955 {
    color: var(--text-gray);
    font-size: 1rem;
}

.frame-full-d24a {
    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);
}

.media-49e5 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.media-49e5 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.notification_e17b {
    margin: 2rem 0;
}

.west_30dc {
    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);
}

.west_30dc:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.copper-4aff {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.breadcrumb_8753 {
    flex: 1;
}

.slider-white-57b5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.logo-7686 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.layout_prev_a5ed {
    margin: 2rem 0;
}

.outline-1936 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outline-1936 .header-pressed-1a56 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.outline-1936 .tag_b7e8 {
    color: var(--text-gray);
    margin: 0;
}

.input-4d63 {
    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);
}

.input-4d63 .menu_7d6e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.shadow_next_dd87 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.element_hard_a1b4 {
    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;
}

.bright_b6aa {
    flex: 1;
}

.list_0d8e {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.backdrop-a0a2 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.item-lite-5684 {
    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;
}

.shadow-1fe4 {
    flex: 1;
}

.slider_hot_9c1f {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.cool_41ad {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.button_2d65 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.tabs-light-1ff0 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.component_cool_eccb {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.component_cool_eccb .plasma_cfcc {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.hard_682b {
    margin-top: 2rem;
}

.hard_682b .card_e6e8 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.module-5dab {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.panel_active_9feb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .panel_active_9feb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.panel_active_9feb .static_bab0 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pagination_bb51 {
    margin: 2rem 0;
}

.steel-e51c {
    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 */
.nav-plasma-7288 {
    padding: var(--section-padding);
}

.steel_cf74 {
    margin-top: 1rem;
}

.paragraph_dynamic_4499 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.paragraph_dynamic_4499 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.paragraph_dynamic_4499 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.hidden_top_829f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.brown-dda4 {
    margin: 2rem 0;
}

.focus_smooth_a083 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.gallery-yellow-ae41 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.border_fixed_43f7 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.tabs-pressed-af3e {
    margin: 2rem 0;
}

.alert_focused_3e00 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.alert_focused_3e00 .surface_61ca {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.progress_huge_8d18 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .progress_huge_8d18 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.alert-smooth-2aa5 {
    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);
}

.simple_c681 {
    color: var(--text-white);
    font-weight: 600;
}

.yellow-1d08 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.feature-dynamic-082e {
    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);
}

.feature-dynamic-082e p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.active_fresh_9e2f {
    padding: var(--section-padding);
}

.shadow_hard_6f1e {
    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;
}

.shadow_hard_6f1e:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.upper-392d {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.upper-392d .complex-6b9a {
    font-size: 2rem;
    flex-shrink: 0;
}

.upper-392d .column-878e {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.advanced-09f9 {
    flex: 1;
}

.focus_hard_1331 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.paragraph_902a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.paragraph_902a li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.paragraph_902a li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.complex_6ba3 {
    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);
}

.complex_6ba3 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.complex_6ba3 strong {
    color: var(--warning-color);
}

/* Slots Section */
.paragraph-liquid-5eef {
    padding: var(--section-padding);
}

.gas_bc27 {
    margin: 2rem 0;
}

/* Table Games Section */
.carousel_south_054d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.video_7207 {
    margin: 2rem 0;
}

.panel_cd58 {
    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);
}

.panel_cd58:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.panel_cd58 .panel_last_76b0 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.panel_cd58 .info-8286 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.image-c7cc {
    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);
}

.image-c7cc .menu_7d6e {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.bronze_e06a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.main-6ed0 {
    margin: 2rem 0;
}

.element_new_2d75 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.surface-57fa {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.sort-27c0 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.old-1d2c {
    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);
}

.old-1d2c:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.old-1d2c.fn-active-5d2f {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.copper-efeb {
    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);
}

.inner_ec14 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.inner_ec14 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.hot_c361 {
    padding: var(--section-padding);
}

.fresh-e764 {
    margin: 2rem 0;
}

.item_in_1189 {
    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);
}

.item_in_1189:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .item_in_1189 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.status_dirty_422f {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.input-wood-c4e0 {
    flex: 1;
}

.hero_down_d454 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.alert_5a98 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.message_warm_a780 {
    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;
}

.banner-copper-70e8 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.orange_1cb2 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.widget-full-77da {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.summary-2d19 {
    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;
}

.summary-2d19:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.thumbnail_9ddb {
    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);
}

.tabs-up-0e10 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.tabs-up-0e10 strong {
    color: var(--accent-color);
}

/* New Games Section */
.hero_f458 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.border-3210 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .border-3210 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .border-3210 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.logo_rough_1ced {
    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;
}

.logo_rough_1ced:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.column_1318 {
    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;
}

.east-afc0 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.active-e57a {
    font-size: 2rem;
}

.focused-41b5 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.preview-huge-6a2d {
    flex: 1;
}

.steel-c885 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.tiny-5dfc {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.dynamic_5d87 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.narrow_14a9 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.nav-right-c33d {
    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;
}

.out_c646 {
    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;
}

.out_c646:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.disabled-48fe {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.thumbnail_dd1d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.button-hard-6651 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .button-hard-6651 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.main-358d {
    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);
}

.tooltip_dim_5abf {
    color: var(--text-white);
    font-weight: 600;
}

.logo_light_b10f {
    color: var(--accent-color);
    font-weight: 600;
}

.last-cb7d {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.last-cb7d strong {
    color: var(--accent-color);
}

/* Security Section */
.footer_024d {
    padding: var(--section-padding);
}

/* Benefits Section */
.primary_65e6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.component-8031 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.info_upper_495c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.content_500e {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.right-1091 {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

@media (max-width: 768px) {
    .right-1091 {
        flex-direction: column;
        gap: 1rem;
    }
}

.right-1091:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.right-1091 .item-lite-5684 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.right-1091 .shadow-1fe4 {
    flex: 1;
}

.right-1091 .slider_hot_9c1f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.right-1091 .cool_41ad {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.sidebar_in_85a2 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.sidebar_in_85a2 .status_6010 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.sidebar_in_85a2 .image_static_45fa {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar_in_85a2 .image_static_45fa li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.sidebar_in_85a2 .image_static_45fa li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.pro_e762 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.huge_b32b {
    padding: var(--section-padding);
}

.paragraph-bc84 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .paragraph-bc84 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.box-42c2 {
    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);
}

.box-42c2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.box-42c2 .next_51b0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.box-42c2 .carousel_19ce {
    flex: 1;
}

.box-42c2 .title-current-8ee3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.box-42c2 .preview-10fc {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.rough-21a8 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.rough-21a8 .hero_last_a506 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.rough-21a8 .text-a50d {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.rough-21a8 .text-a50d 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);
}

.rough-21a8 .text-a50d li:last-child {
    border-bottom: none;
}

.rough-21a8 .text-a50d 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;
}

.rough-21a8 .text-a50d li strong {
    color: var(--text-white);
}

.input-dark-5531 {
    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);
}

.input-dark-5531 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.input-dark-5531 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.north-ed93 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.picture-middle-8ce4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .picture-middle-8ce4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.green_dfc7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.green_dfc7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.right-0d83 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-9c1e {
    font-size: 2rem;
}

.brown-919c {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.new_95fb {
    flex: 1;
}

.avatar-lite-3c13 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.avatar-lite-3c13 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.avatar-lite-3c13 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.tertiary_7e2d {
    margin-top: 3rem;
}

.aside_iron_9d7c {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.outline_593e {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.thick_b6b0 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.thick_b6b0 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.thick_b6b0 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.thick_b6b0 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.shade_d720 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.action_63b3 {
    margin: 2rem 0;
}

.summary_fixed_8e5d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.summary_fixed_8e5d .surface_61ca {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tabs-current-0f70 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .tabs-current-0f70 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.frame-2cb1 {
    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);
}

.frame-2cb1:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.component-fast-dd4a {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.plasma-cba7 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.wood_8acf {
    padding: var(--section-padding);
}

.nav-6a95 {
    margin: 2rem 0;
}

.picture-aa56 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .picture-aa56 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .picture-aa56 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.motion-d125 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.motion-d125:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.accordion_blue_46a5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.module-eaea {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.tabs_de74 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.tabs_de74.active-b04d {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.green_2582 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.detail_e040 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.info-last-0405 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.filter_6e56 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.header_dynamic_5108 {
    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);
}

.header_dynamic_5108 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.header_dynamic_5108 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.accordion_simple_1d73 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.background-dynamic-b8f6 {
    margin: 2rem 0;
}

.sidebar_gold_3743 {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
    position: relative;
    transition: var(--transition-normal);
}

@media (max-width: 768px) {
    .sidebar_gold_3743 {
        flex-direction: column;
        gap: 1rem;
    }
}

.sidebar_gold_3743:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.sidebar_gold_3743::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);
}

.detail_green_51ad {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.text_yellow_bfa4 {
    flex: 1;
}

.fresh-91dc {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.pink_0d3e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pink_0d3e li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.chip-1a1c {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.old-4df5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.caption_wood_419c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .caption_wood_419c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pink-eb09 {
    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);
}

.short_9d4f {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.right_0c4c {
    flex: 1;
}

.fresh_fa7b {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.hover_lite_4325 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.hover_1fc7 {
    margin-top: 2rem;
    text-align: center;
}

.highlight_2a13 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.highlight_2a13 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.bottom-9af7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .bottom-9af7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.message-46ea {
    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);
}

.message-46ea:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.message-46ea .mask_last_b469 {
    font-size: 2rem;
    flex-shrink: 0;
}

.message-46ea .mask_tiny_efad {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.message-46ea .picture-bronze-bdb4 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.message-46ea .border-65db {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.hero_top_c342 {
    padding: var(--section-padding);
}

.media_5adb .clean_c665 {
    flex: 1;
}

/* Promo Calendar Section */
.video_6d57 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.action-d533 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .action-d533 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.caption_paper_260e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dirty-dcf3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.backdrop_c998 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.focus-active-4dca {
    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);
}

.hover-in-f70f {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.current_7ace {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.accordion-5fc7 {
    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);
}

.accordion-5fc7 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.accordion-5fc7 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.focus_e8b1 {
    padding: var(--section-padding);
}

.up_42c3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .up_42c3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.column_lower_e48b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pattern-9dff {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.card-top-d8b4 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-top-d8b4 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.section_86a0 {
    margin-top: 3rem;
}

.section_86a0 .aside_iron_9d7c {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.section_86a0 .outline_593e {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.section_86a0 .thick_b6b0 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.section_86a0 .thick_b6b0 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.section_86a0 .thick_b6b0 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.section_86a0 .thick_b6b0 li strong {
    color: var(--warning-color);
}

.video-45bf {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.video-45bf strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.card-51cb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.slow_7749 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .slow_7749 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hard_766e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hard_766e .surface_61ca {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.text-94e0 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.banner_5901 {
    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);
}

.banner_5901:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.badge_soft_c421 {
    font-size: 2rem;
    flex-shrink: 0;
}

.form-70ec {
    flex: 1;
}

.badge-84de {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.accordion_static_7b17 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.primary_static_67d9 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.text_clean_51bb {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.search_top_04c7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .search_top_04c7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.progress_f224 {
    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);
}

.progress_f224:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.hero_6e12 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.first-0374 {
    color: var(--text-gray);
    font-size: 1rem;
}

.paper-7e2d {
    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);
}

.highlight_1744 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.highlight_1744 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.stale-5c44 { 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; }
.nav_action_8367, .background_8c61 { max-width:100%; height:auto; }

.smooth_2384, .element_809e, .badge_712c { white-space:normal; }

.modal_62b0,
.gradient-gold-4568,
.container_fbfc,
.bottom-9af7,
.layout_prev_a5ed,
.shadow-dim-2a32 {
  flex-wrap:wrap;
}

[class*="grid"],
.search_top_04c7,
.picture-aa56,
.highlight_solid_d63e {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.media_97fb img,
.gradient-gold-4568 img,
.background-middle-9857 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.yellow-9157, .border_fe48,
.preview_17fa, .detail_next_bdd6 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.tall-95bd { width:100%; overflow-x:auto; }
.tall-95bd table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.outline-44d8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .outline-44d8 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.background_current_9e2d {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.item_a1d5,
.outer-dfd9,
.fluid_dc04,
.accent-c44f,
.preview_173c,
.search_top_04c7,
.picture-aa56,
.highlight_solid_d63e,
.text_40e1,
.fresh-e764,
.outline-44d8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .item_a1d5,
  .outer-dfd9,
  .fluid_dc04,
  .accent-c44f,
  .preview_173c,
  .search_top_04c7,
  .picture-aa56,
  .highlight_solid_d63e,
  .text_40e1,
  .fresh-e764,
  .outline-44d8 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.selected_244b,
.white_247b,
.progress_f224,
.accordion-medium-9da1,
.motion-d125,
.huge-f0de,
.item_in_1189,
.background_current_9e2d {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.hot_a51b,
.soft-3bcf,
.notice_inner_5e31 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hot_a51b > *,
.soft-3bcf > *,
.notice_inner_5e31 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 5053 */
.widget-item-v0 {
  padding: 0.3rem;
  font-size: 11px;
  line-height: 1.2;
}
