/* {$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;
}

.container-pink-c8ee {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.shadow_2914 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .shadow_2914 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .shadow_2914 {
        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 */
.advanced-f4d0 {
    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);
}

.item-549d {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .item-549d {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .middle-854c {
        grid-column: 1;
    }
    
    .cold_5c6d {
        grid-column: 2;
    }
    
    .small_5121 {
        grid-column: 3;
    }
}

.middle-854c img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.middle-854c:hover img {
    transform: scale(1.05);
}

/* Navigation */
.summary-light-4bbc {
    display: none;
}

@media (min-width: 1024px) {
    .summary-light-4bbc {
        display: block;
    }
}

/* Grouped Navigation */
.detail_purple_5b22 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.plasma_3550 {
    position: relative;
}

.sidebar-8fb0 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.plasma_3550 .border_3195 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.border_3195 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.element-3a65 {
    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;
}

.element-3a65:hover,
.element-3a65.fn-active-f1b5 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.tertiary-fixed-cf1d {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .tertiary-fixed-cf1d {
        display: flex;
    }
}

/* Mobile Register Button */
.cold_5c6d {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .cold_5c6d {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.component-ada6 {
    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;
}

.component-ada6::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 */
.small_5121 {
    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) {
    .small_5121 {
        display: none;
    }
}

.small_5121 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.small_5121.fn-active-f1b5 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.small_5121.fn-active-f1b5 span:nth-child(2) {
    opacity: 0;
}

.small_5121.fn-active-f1b5 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.column-fa64 {
    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;
}

.column-fa64.fn-active-f1b5 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.aside-advanced-53e2 {
    overflow: hidden;
}

.complex-70a9 {
    list-style: none;
    padding: 0.75rem 0;
}

.menu_glass_a4cd {
    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;
}

.menu_glass_a4cd:hover,
.menu_glass_a4cd.fn-active-f1b5 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.menu_glass_a4cd.section-f0d0 {
    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;
}

.menu_glass_a4cd.section-f0d0::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 */
.table-386c {
    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;
}

.picture_thick_8878 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.picture_thick_8878:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.accordion_center_50ea {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.accordion_center_50ea:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.notice_e1c5 {
    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;
}

.notice_e1c5:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.summary_dark_f0d6 {
    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;
}

.thumbnail_clean_1ff5 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.thumbnail_clean_1ff5:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.gradient_344e {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.gradient_344e:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.detail_inner_e1dd {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.detail_inner_e1dd: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);
}

.feature-active-a3db {
    font-size: 1em;
    font-weight: 700;
}

.backdrop-cea4 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.message_da8a {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.message_da8a::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;
}

.row_79d5 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .row_79d5 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.outer_ec08 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.advanced_419c {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.inner_a89a {
    margin-bottom: 2rem;
}

.steel_e068 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .steel_e068 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.avatar_bottom_6954 {
    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);
}

.image_3072 {
    font-size: 1.5rem;
}

.tooltip-medium-b602 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.glass_f300 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.chip_f8f8 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.chip_f8f8:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.background-selected-1447 {
    text-align: center;
    margin-bottom: 3rem;
}

.panel-5e0b {
    margin-bottom: 1rem;
}

.footer-809d {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.pink-c8b4 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .pink-c8b4 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .pink-c8b4.link_ddb1 {
        direction: rtl;
    }
    
    .pink-c8b4.link_ddb1 > * {
        direction: ltr;
    }
}

.menu-focused-e465 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.menu-focused-e465:first-child {
    margin-top: 0;
}

.layout_in_3db6 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.carousel_hot_24d8 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.carousel_hot_24d8:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.tiny-1172 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tiny-1172 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.last-e246 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.box-dark-eea4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.pattern_6755 {
    list-style: none;
}

.pattern_6755 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pattern_6755 li:last-child {
    border-bottom: none;
}

/* Games Features */
.chip_7d80 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.glass-b544 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.fresh_e581 {
    font-size: 2rem;
    flex-shrink: 0;
}

.popup_lower_0468 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.narrow_5d06 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.modal_6968 {
    margin: 2rem 0;
}

.layout-a3ca {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.panel-0228 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.aside_b208 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.simple-5c3a {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.border-e243 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .border-e243 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.prev_06bd {
    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);
}

.prev_06bd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.accent_18a9 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.media_clean_7561 {
    font-size: 1.5rem;
}

.column-0418 {
    color: var(--accent-color);
    margin: 0;
}

.thumbnail-gold-e463 {
    list-style: none;
}

.thumbnail-gold-e463 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.thumbnail-gold-e463 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.picture_8c38 {
    margin: 2rem 0;
}

.section-4b80 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.breadcrumb-action-338b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .breadcrumb-action-338b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gradient-46fc {
    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);
}

.breadcrumb-tiny-3288 {
    font-size: 1.25rem;
}

.overlay_76de {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.red_8592,
.tall_2641 {
    text-align: center;
    margin: 2rem 0;
}

.next_1869,
.wood-a38c {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.overlay_b4cf {
    margin: 2rem 0;
    text-align: center;
}

.modal-lower-7223 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.modal-lower-7223::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;
}

.form_8cea {
    position: relative;
    z-index: 1;
}

.info_c25e {
    margin-bottom: 1rem;
}

.up-ba8e {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.progress-8499 {
    margin-bottom: 3rem;
}

.slider_rough_0b9b {
    margin-top: 3rem;
}

.container_f6f9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .container_f6f9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.container_f6f9 .avatar_bottom_6954 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.main_wide_207c {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.backdrop-39b9 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.pressed-9ff2 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.mask_7d50 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .mask_7d50 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .mask_7d50 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.avatar_39b8 {
    margin-bottom: 1rem;
}

.picture-3d0f img {
    margin-bottom: 1rem;
}

.hover-iron-669e {
    color: var(--text-gray);
    line-height: 1.6;
}

.article-2b40 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.label-63c3 {
    list-style: none;
}

.label-63c3 li {
    margin-bottom: 0.5rem;
}

.label-63c3 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.label-63c3 a:hover {
    color: var(--accent-color);
}

.hover-mini-5541 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tag-849c {
    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);
}

.tag-849c:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.description_6987 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.description_6987 p {
    margin-bottom: 0.25rem;
}

.aside-1fb8 {
    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) {
    .aside-1fb8 {
        flex-direction: row;
    }
}

.header_brown_07a4 {
    text-align: center;
}

@media (min-width: 768px) {
    .header_brown_07a4 {
        text-align: left;
    }
}

.header_brown_07a4 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.component-gold-8e45 {
    font-size: 0.75rem !important;
}

.disabled-wood-5bb0 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.info_cff9 {
    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);
    }
}

.article-e86d {
    animation: fadeInUp 0.6s ease-out;
}

.south-b2b3 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.layout_3855 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .layout_3855 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.texture_tiny_bf85 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .texture_tiny_bf85 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.progress_f47f {
    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);
}

.progress_f47f .fresh_e581 {
    font-size: 1.25rem;
}

.progress_f47f .alert-e3e0 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.active_b7aa {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .active_b7aa {
        grid-template-columns: repeat(3, 1fr);
    }
}

.widget_0315 {
    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);
}

.widget_0315:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.feature_af48 {
    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-clean-cc5e {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.section-e06d {
    color: var(--text-gray);
    line-height: 1.6;
}

.outline-c399 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.layout-easy-ee75 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.layout-easy-ee75 .popup_lower_0468 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.layout-easy-ee75 .narrow_5d06 {
    color: var(--text-gray);
    line-height: 1.6;
}

.gold-d16d {
    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);
}

.dark-cce1 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.dark-cce1 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.dark-cce1 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.image_a730 {
    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);
}

.content_31d3 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-2464 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-2464 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.feature-2464 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);
}

.feature-2464 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.feature-2464 input::placeholder {
    color: var(--text-muted);
}

.sidebar-left-213e {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-pressed-1ed5 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.filter-pressed-1ed5 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.hover-2240 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.hover-2240:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.breadcrumb-action-338b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .breadcrumb-action-338b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gradient-46fc {
    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);
}

.gradient-46fc .breadcrumb-tiny-3288 {
    font-size: 1.25rem;
}

.gradient-46fc .overlay_76de {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.gallery-basic-8530 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hot_fe3d {
    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);
}

.hot_fe3d .fresh_e581 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hot_fe3d .popup_lower_0468 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hot_fe3d .narrow_5d06 {
    color: var(--text-gray);
    line-height: 1.6;
}

.search-b511 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.caption_0e9a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.caption_0e9a .panel_active_f816 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.caption_0e9a .glass_7752 {
    color: var(--text-gray);
    line-height: 1.6;
}

.heading_6f73 {
    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);
}

.accordion-full-4a5d {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .accordion-full-4a5d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.detail-9cb8 {
    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);
}

.detail-9cb8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.shadow-fixed-5cfc {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.frame_pro_3f6c {
    flex: 1;
}

.old-14c2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.new-1c5c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.disabled-d463 {
    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);
}

.disabled-d463:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.gallery_6fcd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gallery_6fcd {
        grid-template-columns: repeat(4, 1fr);
    }
}

.photo-inner-107e {
    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);
}

.photo-inner-107e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.right_25c8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.primary_outer_0439 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.upper_8523 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.label-large-b212 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.static-603f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.static-433a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.form-narrow-695c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.form-narrow-695c .header-black-b261 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.form-narrow-695c .right_1c5a {
    color: var(--text-gray);
    line-height: 1.6;
}

.silver_b2d6 {
    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);
}

.brown-6dc8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.progress-82e7 {
    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);
}

.progress-82e7 .fresh_e581 {
    font-size: 2rem;
    flex-shrink: 0;
}

.progress-82e7 .popup_lower_0468 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.progress-82e7 .narrow_5d06 {
    color: var(--text-gray);
    line-height: 1.6;
}

.left-7011 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .left-7011 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.paper-6e48 {
    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);
}

.paper-6e48:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.menu_hovered_2e49 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .menu_hovered_2e49 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.large_fa2d {
    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);
}

.large_fa2d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.aside_467b {
    font-size: 2rem;
    flex-shrink: 0;
}

.purple-b19b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.panel-0228 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.notice-472c {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.mask_6fca {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.link-advanced-826f {
    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-advanced-826f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.up_9bfd {
    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);
}

.column_black_3272 {
    flex: 1;
}

.form-f90a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.pagination_tiny_8627 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.middle_659b {
    color: var(--text-gray);
    line-height: 1.6;
}

.hot-5fbc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dropdown_old_95d5 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dropdown_old_95d5 .panel_active_f816 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.dropdown_old_95d5 .glass_7752 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tall_2641 {
    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);
}

.tag_liquid_62a1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tag_liquid_62a1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.fresh_ffb0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fresh_ffb0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.warm_a0a7 {
    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);
}

.warm_a0a7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.inner-2aec {
    font-size: 2rem;
    flex-shrink: 0;
}

.item_6249 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.large-23d7 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.warm-6b3c {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.medium-f8c6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.media-aa3b {
    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);
}

.badge_ff4a {
    font-size: 2rem;
    flex-shrink: 0;
}

.pro-66bf {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tag-e23f {
    color: var(--text-gray);
    line-height: 1.6;
}

.brown-6dc8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.progress-82e7 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.progress-82e7 .popup_lower_0468 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.progress-82e7 .narrow_5d06 {
    color: var(--text-gray);
    line-height: 1.6;
}

.focus_4e1c {
    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);
}

.basic_8f9f {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .basic_8f9f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .basic_8f9f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.clean_df1b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.clean_df1b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gas_3323 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.pro-f938 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.primary-bd95 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.accordion_left_26dd {
    padding: 1.5rem;
}

.hover-a2e2 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.focus_f638 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.focus_f638 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;
}

.focus_f638 li:last-child {
    border-bottom: none;
}

.focus_f638 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.frame_7e4b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .frame_7e4b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.light-9ac9 {
    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);
}

.light-9ac9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.cold-ee41 {
    font-size: 2rem;
    flex-shrink: 0;
}

.chip-bottom-f487 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.pattern-white-8869 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.image-south-eb6f {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.form-north-a08f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.rough_4b0b {
    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);
}

.footer-white-3a99 {
    font-size: 2rem;
    flex-shrink: 0;
}

.alert_gas_b0e5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.accordion-28d2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.fixed_3b93 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.dim-ddc0 {
    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);
}

.image_thick_0dc4 {
    text-align: center;
}

.sidebar_e850 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.short-2ea6 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.down-f7c1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.right-2c17 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.right-2c17 .popup_lower_0468 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.right-2c17 .narrow_5d06 {
    color: var(--text-gray);
    line-height: 1.6;
}

.highlight-d24e {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .highlight-d24e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .highlight-d24e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.right-2828 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.right-2828:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.bronze_58d1 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.banner_76eb {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.popup_lower_0468 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.active_666b {
    padding: 1.5rem;
}

.narrow_5d06 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hero-026f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-026f 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;
}

.hero-026f li:last-child {
    border-bottom: none;
}

.hero-026f li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.layout_dd4e {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.tag_up_6875 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.tag_up_6875:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hot-97c5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.card-f1d1 {
    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);
}

.feature_af48 {
    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-clean-cc5e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.section-e06d {
    color: var(--text-gray);
    line-height: 1.6;
}

.block-07d9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.info_a91f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.table-4156 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.gradient_slow_c314 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.caption-medium-4a1a {
    display: flex;
    gap: 1rem;
}

.caption-medium-4a1a .thick_0870 {
    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;
}

.input_4bf2 {
    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);
}

.easy_3546 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.component-c030 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.component-c030 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;
}

.component-c030 li:last-child {
    border-bottom: none;
}

.component-c030 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.hard_0296 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .hard_0296 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hard_0296 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.frame-brown-d0fa {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.frame-brown-d0fa:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.frame-fa59 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.item_orange_bd77 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.header-black-b261 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.highlight_7d11 {
    font-size: 1rem;
}

.last_a8b1 {
    padding: 1.5rem;
}

.right_1c5a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.cold_850f {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.cold_850f .image_thick_0dc4 {
    text-align: center;
}

.cold_850f .short-2ea6 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.cold_850f .status-4b9a {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.plasma-5f08 {
    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);
}

.plasma-5f08:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.tag_fb7a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tag_fb7a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.form_narrow_28cc {
    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_narrow_28cc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.description-1c88 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.paragraph-51e5 {
    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);
}

.detail_2314 {
    font-size: 2rem;
    flex-shrink: 0;
}

.lower_3225 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.popup-pink-a183 {
    color: var(--text-gray);
    line-height: 1.6;
}

.lower_a7fb {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.logo_over_282c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.media_inner_b163 {
    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);
}

.slider_hovered_cf9c {
    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;
}

.slider_hovered_cf9c.yellow-602c {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.slider_hovered_cf9c.grid-093f {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.slider_hovered_cf9c.header_911c {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.slider_hovered_cf9c.dynamic_0b69 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.slider_hovered_cf9c.dynamic-1f3e {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.pattern-hovered-b149 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.primary_narrow_3f77 {
    color: var(--text-gray);
    line-height: 1.6;
}

.shadow-thick-d140 {
    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);
}

.dirty_d8d4 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.search-b511 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-b511 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;
}

.search-b511 li:last-child {
    border-bottom: none;
}

.search-b511 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.aside-bright-c066 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .aside-bright-c066 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .aside-bright-c066 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.cool_bd82 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.cool_bd82:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.cool_bd82.middle-d8e1 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .cool_bd82.middle-d8e1 {
        grid-column: span 3;
    }
}

.east-4bbb {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.cool_bd82.middle-d8e1 .east-4bbb {
    background: rgba(6, 182, 212, 0.1);
}

.hidden_1860 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.status_eb25 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.cool_bd82.middle-d8e1 .status_eb25 {
    color: var(--info-color);
}

.form_e4db {
    padding: 1.5rem;
    text-align: center;
}

.gallery-cf90 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.cool_bd82.middle-d8e1 .gallery-cf90 {
    color: var(--info-color);
}

.content-next-7a57 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.large-12ff {
    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 */
.aside_4bef {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .aside_4bef {
        grid-template-columns: repeat(4, 1fr);
    }
}

.primary_narrow_22e4 {
    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);
}

.primary_narrow_22e4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.purple-d1ba {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hot_fe3d {
    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);
}

.breadcrumb-tiny-3288 {
    font-size: 2rem;
    flex-shrink: 0;
}

.heading_a558 {
    flex: 1;
}

.section-4b80 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.texture_d86b {
    color: var(--text-gray);
    line-height: 1.6;
}

.label_pro_3a84 {
    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);
}

.avatar-d4fa {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.gallery_outer_3a6e {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.info_cff9 {
    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);
}

.aside_cf63 {
  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);
}

.aside_cf63 .image_thick_0dc4 {
    text-align: center;
}

.aside_cf63 .sidebar_e850 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.aside_cf63 .short-2ea6 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.menu-a440 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.photo-dark-de94 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.first_32a2 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.footer_last_01dc {
    color: var(--text-gray);
    line-height: 1.6;
}

.component_c6ee {
    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);
}

.pagination_pressed_399d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hidden-gas-1562 {
    color: var(--text-gray);
    line-height: 1.6;
}

.bronze-3bd2 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .bronze-3bd2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .bronze-3bd2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mini-0557 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.mini-0557:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.slow_4db3 {
    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);
}

.liquid_b495 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.focused_1827 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.cool-7a8c {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cool-7a8c.aside_hard_2a52 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.cool-7a8c.mask-f428 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.cool-7a8c.texture-d471 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.progress-9d75 {
    padding: 1.5rem;
    text-align: center;
}

.avatar_out_9903 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pattern_white_1e19 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.pattern_white_1e19 .panel_top_2267 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.wrapper_4380 {
    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);
}

.wrapper_4380:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.mask-b79f {
  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);
}

.center-69ed {
    text-align: center;
}

.center-69ed .sidebar_e850 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.center-69ed .short-2ea6 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.motion_5ddd { text-align: center; }
.complex_b872 { text-align: left; }
.chip-fast-ad91 { text-align: right; }

.tabs_over_29b5 { margin-bottom: 0; }
.complex_8fe2 { margin-bottom: 0.5rem; }
.logo-west-78ee { margin-bottom: 1rem; }
.small-c4d1 { margin-bottom: 1.5rem; }
.current-a77f { margin-bottom: 2rem; }

.south-a66d { margin-top: 0; }
.item_7cba { margin-top: 0.5rem; }
.pink_c01e { margin-top: 1rem; }
.description-7048 { margin-top: 1.5rem; }
.top_a6be { margin-top: 2rem; }

.fn-hidden-f1b5 { display: none; }
.fn-visible-f1b5 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .message_da8a {
        padding: 6rem 0 3rem;
    }
    
    .row_79d5 {
        text-align: center;
    }
    
    .pink-c8b4 {
        text-align: center;
    }
    
    .steel_e068 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .advanced-f4d0,
    .column-fa64,
    .modal-lower-7223,
    .pressed-9ff2 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .message_da8a {
        background: none;
    }
}

/* Providers Section */
.active-bf59 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.video_6065 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .video_6065 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .video_6065 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.brown-8929 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.brown-8929:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.blue_d537 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.active_simple_721f {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.easy_e48f {
    list-style: none;
    padding: 0;
}

.easy_e48f li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.easy_e48f li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.element_4440 {
    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);
}

.element_4440 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.article-lower-c7f9 {
    padding: var(--section-padding);
}

.tertiary-fast-0359 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tertiary-fast-0359 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.row-hovered-4b92 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.row-hovered-4b92:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.image_full_c3d3 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.logo_over_2243 {
    display: flex;
    flex-direction: column;
}

.outer_ce9e {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.sort-02ea {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.link-warm-74ab {
    color: var(--accent-color);
}

.form_aa8c {
    font-size: 1.25rem;
}

.image_complex_74fb {
    margin-bottom: 1rem;
}

.image_complex_74fb p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.pro-050d {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.mask-hot-f3dc {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.image_thick_0dc4 {
    text-align: center;
}

.sidebar_e850 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.short-2ea6 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.tabs-narrow-5054 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.border-9515 {
    margin: 2rem 0;
}

.focus-dark-631a {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.focus-dark-631a .fresh_e581 {
    font-size: 2rem;
    flex-shrink: 0;
}

.motion-a686 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.advanced_9286 {
    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;
}

.advanced_9286:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.selected-4fdd {
    font-size: 2rem;
}

.progress-lite-0e20 {
    display: flex;
    flex-direction: column;
}

.dirty_058d {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.over_0570 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.status-42bf {
    padding: var(--section-padding);
}

.middle_a489 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .middle_a489 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .middle_a489 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.thick_3955 {
    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);
}

.thick_3955:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.thick_3955 .sidebar_e850 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.thick_3955 .short-2ea6 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.thick_3955 .liquid-f363 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.overlay_yellow_cd8b {
    margin-top: 4rem;
}

.nav_e881 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.solid-f0d2 {
    overflow-x: auto;
}

.description-fd5a {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.description-fd5a thead {
    background: var(--accent-color);
}

.description-fd5a th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.description-fd5a td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.description-fd5a tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.description-fd5a tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.shade-6d7c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.frame_south_aa2a {
    max-width: 900px;
    margin: 0 auto;
}

.menu-stale-8f40 {
    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);
}

.menu-stale-8f40:hover {
    border-color: var(--accent-color);
}

.focus_365e {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.focus_365e h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.stale_758a {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.menu-stale-8f40.fn-active-f1b5 .stale_758a {
    transform: rotate(45deg);
}

.slider_bottom_fa77 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.menu-stale-8f40.fn-active-f1b5 .slider_bottom_fa77 {
    max-height: 1000px;
}

.slider_bottom_fa77 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.content-cf08 {
    padding: var(--section-padding);
}

.dark-cce1 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.wide-aa7d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.lower_3461 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .lower_3461 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.main-advanced-e593 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.row-over-0c69 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.chip_f64f {
    font-size: 2rem;
}

.slider_dirty_e5b0 {
    color: var(--text-white);
    margin: 0;
}

.preview-d9ff {
    list-style: none;
    padding: 0;
}

.preview-d9ff li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-d9ff li:last-child {
    border-bottom: none;
}

.description-action-af29 {
    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);
}

.description-action-af29 p {
    color: var(--success-color);
    margin: 0;
}

.link-center-f77f {
    margin-top: 3rem;
}

.easy_3546 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.form_stale_9ec9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .form_stale_9ec9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.narrow_4437 {
    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);
}

.steel-64f0 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.narrow_4437 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.fluid-e2b2 {
    padding: var(--section-padding);
}

.stale-73cf {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .stale-73cf {
        grid-template-columns: repeat(3, 1fr);
    }
}

.message-narrow-6928 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.message-narrow-6928:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.short_cd0d {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tabs_solid_df8c {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.fluid_65ec {
    flex: 1;
}

.bright_322e {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.new-3837 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.hidden-a3d4 {
    color: var(--text-gray);
    line-height: 1.6;
}

.item-21e7 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.item-21e7:last-child {
    border-bottom: none;
}

/* Comparison Section */
.top-2304 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.badge_56dc {
    padding: var(--section-padding);
}

.gas-564b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.active-e173 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .active-e173 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hot-47bf {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.accordion_clean_4c6a, .header-next-ab41, .sidebar_north_703e {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.sidebar_north_703e {
    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 */
.blue-d139 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.summary-upper-acd9 {
    margin: 2rem 0;
}

.alert_f416 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.grid-bb55 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.narrow-58ec {
    list-style: none;
    padding: 0;
}

.narrow-58ec 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;
}

.narrow-58ec li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.narrow-58ec li:last-child {
    border-bottom: none;
}

.aside_inner_d032 {
    text-align: center;
    margin-top: 2rem;
}

.center-78af {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.south_36ee {
    padding: var(--section-padding);
}

.narrow_5e35 {
    margin: 2rem 0;
}

.advanced-cfed {
    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) {
    .advanced-cfed {
        flex-direction: column;
        align-items: flex-start;
    }
}

.advanced-cfed:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.bronze-8c1f {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.gradient_right_2655 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.plasma-6813 {
    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;
}

.liquid-77d3 {
    flex: 1;
}

.active_white_1100 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.paragraph_8cf9 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.tertiary-8d6f {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.white_d298 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .white_d298 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.layout_outer_d55c {
    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);
}

.layout_outer_d55c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.layout_outer_d55c .sidebar_e850 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.layout_outer_d55c .short-2ea6 {
    color: var(--text-gray);
    font-size: 1rem;
}

.media-8e4b {
    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);
}

.caption_416c {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.caption_416c strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.logo_a15f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .logo_a15f {
        grid-template-columns: 1fr 1fr;
    }
}

.center-2545 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.title_medium_5f5d {
    margin-bottom: 1.5rem;
}

.title_medium_5f5d label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.title_medium_5f5d input,
.title_medium_5f5d 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;
}

.title_medium_5f5d input:focus,
.title_medium_5f5d select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.box_large_8fe9 {
    width: 100%;
    margin-top: 1rem;
}

.main-f28e {
    display: flex;
    align-items: center;
}

.solid_94a2 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.component-south-b6cd {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.grid-hard-9caf {
    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;
}

.image-thick-2ba0 {
    color: var(--text-gray);
}

.active_72f3 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.complex_c254 {
    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);
}

.complex_c254 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.form-74e9 {
    margin-top: 3rem;
}

.lower-92d3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.slider_steel_7219 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.banner-hot-7a5c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.preview-old-1b4e {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-old-1b4e:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.overlay_56f4 {
    padding: var(--section-padding);
}

.medium_8ec5 {
    margin: 2rem 0;
}

.active_f63d {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.copper-8b6b {
    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;
}

.copper-8b6b:hover, .copper-8b6b.fn-active-f1b5 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.up_fd0f {
    display: none;
}

.up_fd0f.fn-active-f1b5 {
    display: block;
}

.old_5272 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.box-solid-ea03 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.heading-fast-01a5 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.heading-fast-01a5 ul {
    list-style: none;
    padding: 0;
}

.heading-fast-01a5 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.heading-fast-01a5 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.focus-d864 {
    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 */
.motion_e2ae {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.progress_ebec {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.section_lower_25e7 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.pressed-5152 {
    color: var(--accent-color);
    margin: 0;
}

.main-3ce0 {
    display: flex;
    gap: 1.5rem;
}

.wide_67d7 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.menu-fast-4518 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.active-d93b {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.active-d93b.small_64c4 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.active-d93b.carousel_7d66 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.active-d93b.label_first_4dd9 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.main-thick-b36b {
    margin-top: 2rem;
}

.icon_8071 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.hovered-6dc7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .hovered-6dc7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.list-45d3 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.cool_5824 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.media-light-58fd {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.prev-7530 {
    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 */
.action-0d5b {
    padding: var(--section-padding);
}

.rough_45b5 {
    margin: 2rem 0;
}

.aside-7fa7 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.pro_e34e {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.surface-f78c {
    list-style: none;
    padding: 0;
}

.surface-f78c 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;
}

.surface-f78c li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.surface-f78c li:last-child {
    border-bottom: none;
}

.surface_hovered_927c {
    margin: 2rem 0;
}

.new-2cd3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.huge-ea5b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .huge-ea5b {
        grid-template-columns: repeat(2, 1fr);
    }
}

.preview_9103 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hot_f474 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.secondary-034d {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.upper-6ee0 {
    margin-top: 2rem;
}

.old-14c2 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.avatar-last-67e1 {
    list-style: none;
    padding: 0;
}

.gold_f4d8 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.gold_f4d8 a {
    color: var(--accent-color);
    text-decoration: none;
}

.gold_f4d8 a:hover {
    text-decoration: underline;
}

.medium-3b20 {
    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 */
.aside_135c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.border-cb40 {
    margin: 2rem 0;
}

.grid-dim-b929 {
    margin-bottom: 3rem;
}

.grid-dim-b929 .grid-bb55 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.slow-4d82 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.center_00ab {
    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);
}

.center_00ab:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.down-3371 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .down-3371 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tooltip-green-7289 {
    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 */
.column_3a2c {
    padding: var(--section-padding);
}

.link-59bd {
    margin: 2rem 0;
}

.advanced-f687 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.fresh-78a2 {
    overflow-x: auto;
    margin: 2rem 0;
}

.list-266c {
    background: rgba(6, 182, 212, 0.1) !important;
}

.paper-780a {
    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;
}

.static_d542 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.detail_54de {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .detail_54de {
        grid-template-columns: repeat(3, 1fr);
    }
}

.banner-08b8 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.banner-08b8 .fresh_e581 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.banner-08b8 .popup_lower_0468 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.sort_blue_e237 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.tag-aa35 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pink_d414 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pink_d414 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.header_liquid_bed1 {
    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;
}

.header_liquid_bed1:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.complex_24b4 {
    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);
}

.tooltip-hard-ae42 {
    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;
}

.accent-e8c1 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.lower_3e2d {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.video_9f15 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.focus_warm_f0cc {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.black_0075 {
    color: var(--text-white);
    font-weight: 600;
}

.progress-hard-c69d {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.new-2962 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.new-2962 .thick_0870 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.icon-over-94ee {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .icon-over-94ee {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hot-9670 {
    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);
}

.hot-9670:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.hot-9670 .sidebar_e850 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hot-9670 .short-2ea6 {
    color: var(--text-gray);
    font-size: 1rem;
}

.article-top-4c83 {
    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);
}

.preview-87e1 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.preview-87e1 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.medium-f8c6 {
    margin: 2rem 0;
}

.media-aa3b {
    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);
}

.media-aa3b:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.badge_ff4a {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.search_fixed_4d3d {
    flex: 1;
}

.pro-66bf {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tag-e23f {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.brown-6dc8 {
    margin: 2rem 0;
}

.progress-82e7 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.progress-82e7 .popup_lower_0468 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.progress-82e7 .narrow_5d06 {
    color: var(--text-gray);
    margin: 0;
}

.focus_4e1c {
    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);
}

.focus_4e1c .next_1869 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.sort_blue_e237 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.up_9bfd {
    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;
}

.column_black_3272 {
    flex: 1;
}

.pagination_tiny_8627 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.middle_659b {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.feature_af48 {
    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;
}

.image-a4e9 {
    flex: 1;
}

.slider-clean-cc5e {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.section-e06d {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.table-4156 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.gradient_slow_c314 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.caption-medium-4a1a {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.caption-medium-4a1a .thick_0870 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.input_4bf2 {
    margin-top: 2rem;
}

.input_4bf2 .easy_3546 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.gallery_4f81 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dim-ddc0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .dim-ddc0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dim-ddc0 .image_thick_0dc4 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.down-f7c1 {
    margin: 2rem 0;
}

.right-2c17 {
    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 */
.hover_3c9e {
    padding: var(--section-padding);
}

.active_666b {
    margin-top: 1rem;
}

.hero-026f {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.hero-026f li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.hero-026f li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.disabled_paper_fccf {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.layout_66a9 {
    margin: 2rem 0;
}

.clean_c361 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.south-337a {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.tag-ad5a {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.action_c46d {
    margin: 2rem 0;
}

.aside-410f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.aside-410f .grid-bb55 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.selected_2626 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .selected_2626 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.icon-easy-759a {
    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);
}

.center_1214 {
    color: var(--text-white);
    font-weight: 600;
}

.liquid-6da8 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.info_6d3f {
    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);
}

.info_6d3f p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.light_7d59 {
    padding: var(--section-padding);
}

.shade_light_cc36 {
    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;
}

.shade_light_cc36:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.video-d359 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.video-d359 .steel-64f0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.video-d359 .plasma_bcdd {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.header-medium-5eaf {
    flex: 1;
}

.notification-9952 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.active-hard-a9e5 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.active-hard-a9e5 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.active-hard-a9e5 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.photo-af66 {
    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);
}

.photo-af66 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.photo-af66 strong {
    color: var(--warning-color);
}

/* Slots Section */
.pattern_huge_3a52 {
    padding: var(--section-padding);
}

.static-603f {
    margin: 2rem 0;
}

/* Table Games Section */
.picture_d7e3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.static-433a {
    margin: 2rem 0;
}

.form-narrow-695c {
    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);
}

.form-narrow-695c:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.form-narrow-695c .header-black-b261 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.form-narrow-695c .right_1c5a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.silver_b2d6 {
    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);
}

.silver_b2d6 .next_1869 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.message_north_7f9c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.summary-9022 {
    margin: 2rem 0;
}

.section-f562 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dropdown_pressed_18c1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.lite-e3c3 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.highlight_advanced_7e4a {
    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);
}

.highlight_advanced_7e4a:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.highlight_advanced_7e4a.fn-active-f1b5 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.bottom_e63a {
    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);
}

.picture_west_50ff {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.picture_west_50ff strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.primary-cff3 {
    padding: var(--section-padding);
}

.tiny_e6fa {
    margin: 2rem 0;
}

.gas-0df0 {
    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);
}

.gas-0df0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .gas-0df0 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.nav_easy_b1b2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.dirty_4479 {
    flex: 1;
}

.badge_slow_2c4c {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.bronze_ba59 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.stone_aca5 {
    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;
}

.surface-0903 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hover_static_5d55 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.grid_871f {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.icon-6324 {
    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;
}

.icon-6324:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.north-a8b4 {
    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);
}

.next-6a58 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.next-6a58 strong {
    color: var(--accent-color);
}

/* New Games Section */
.summary-bottom-47d7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.form-blue-29c0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .form-blue-29c0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .form-blue-29c0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.black-07c0 {
    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;
}

.black-07c0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.notification-red-ea38 {
    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;
}

.modal-gas-632e {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.content-d53a {
    font-size: 2rem;
}

.container_soft_329c {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.picture_6c6f {
    flex: 1;
}

.selected_8eac {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.progress_bronze_fbe9 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.motion_cd2d {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.white_8bdc {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.component-in-d130 {
    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;
}

.disabled-09c0 {
    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;
}

.disabled-09c0:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.tag_narrow_0602 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.text-bf32 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.dynamic_9ff4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .dynamic_9ff4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.focus_a0a1 {
    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);
}

.outline-warm-931c {
    color: var(--text-white);
    font-weight: 600;
}

.huge-034c {
    color: var(--accent-color);
    font-weight: 600;
}

.pressed_91b4 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.pressed_91b4 strong {
    color: var(--accent-color);
}

/* Security Section */
.text_bec4 {
    padding: var(--section-padding);
}

/* Benefits Section */
.column-yellow-558c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.shade_down_ff24 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.advanced-a012 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.video_steel_e06f {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.container-ac48 {
    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) {
    .container-ac48 {
        flex-direction: column;
        gap: 1rem;
    }
}

.container-ac48:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.container-ac48 .feature_af48 {
    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;
}

.container-ac48 .image-a4e9 {
    flex: 1;
}

.container-ac48 .slider-clean-cc5e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.container-ac48 .section-e06d {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.feature_yellow_ff9c {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.feature_yellow_ff9c .section-4b80 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.feature_yellow_ff9c .gallery-basic-8530 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature_yellow_ff9c .gallery-basic-8530 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.feature_yellow_ff9c .gallery-basic-8530 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.down_b4aa {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.tall-cb62 {
    padding: var(--section-padding);
}

.badge_mini_1a9c {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .badge_mini_1a9c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.block_narrow_3ec0 {
    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);
}

.block_narrow_3ec0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.block_narrow_3ec0 .overlay-96bc {
    font-size: 2rem;
    flex-shrink: 0;
}

.block_narrow_3ec0 .content-white-c8b8 {
    flex: 1;
}

.block_narrow_3ec0 .panel_active_f816 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.block_narrow_3ec0 .article_tiny_c1f0 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.dropdown-middle-4a20 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dropdown-middle-4a20 .first_0c8e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.dropdown-middle-4a20 .hard-8fb8 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.dropdown-middle-4a20 .hard-8fb8 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);
}

.dropdown-middle-4a20 .hard-8fb8 li:last-child {
    border-bottom: none;
}

.dropdown-middle-4a20 .hard-8fb8 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;
}

.dropdown-middle-4a20 .hard-8fb8 li strong {
    color: var(--text-white);
}

.in-9900 {
    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);
}

.in-9900 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.in-9900 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.secondary-green-146f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.section_a878 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .section_a878 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.down_600c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.down_600c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.caption_outer_b445 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.media-2d06 {
    font-size: 2rem;
}

.silver-8a5a {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.primary_4f25 {
    flex: 1;
}

.info-focused-af88 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-focused-af88 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.info-focused-af88 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.preview_3eb6 {
    margin-top: 3rem;
}

.aside-7fa7 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.pro_e34e {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.surface-f78c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.surface-f78c li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.surface-f78c li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.surface-f78c li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.footer_7b5f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.card_simple_6b37 {
    margin: 2rem 0;
}

.large-a1e2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.large-a1e2 .grid-bb55 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tall-e693 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .tall-e693 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.title-bright-fe6d {
    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);
}

.title-bright-fe6d:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.hovered_151f {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.fast_ff36 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.input-pink-f92b {
    padding: var(--section-padding);
}

.motion_409d {
    margin: 2rem 0;
}

.backdrop_warm_1ef4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .backdrop_warm_1ef4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .backdrop_warm_1ef4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hover-stale-ee62 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.hover-stale-ee62:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.warm-12fa {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.info_right_e6c0 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.texture_smooth_e46a {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.texture_smooth_e46a.container_medium_abc2 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.tabs-e17b {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.west-5a22 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.gallery-orange-417f {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.slow-312b {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.hot_0616 {
    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);
}

.hot_0616 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.hot_0616 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.mini_a400 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hero_66b4 {
    margin: 2rem 0;
}

.iron_443a {
    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) {
    .iron_443a {
        flex-direction: column;
        gap: 1rem;
    }
}

.iron_443a:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.iron_443a::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);
}

.modal-2a98 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.element_d760 {
    flex: 1;
}

.primary_5e99 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.thumbnail_a26b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.thumbnail_a26b li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.breadcrumb-f07c {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wood_4c25 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.down-b3dc {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .down-b3dc {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature_upper_e447 {
    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);
}

.summary_7550 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.popup-0434 {
    flex: 1;
}

.first-a7db {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.black-9d89 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.filter-95dc {
    margin-top: 2rem;
    text-align: center;
}

.image-a1b1 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.image-a1b1 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.tag_fb7a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tag_fb7a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.form_narrow_28cc {
    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);
}

.form_narrow_28cc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.form_narrow_28cc .cold-ee41 {
    font-size: 2rem;
    flex-shrink: 0;
}

.form_narrow_28cc .chip-bottom-f487 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.form_narrow_28cc .pattern-white-8869 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.form_narrow_28cc .image-south-eb6f {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.under-dc83 {
    padding: var(--section-padding);
}

.paragraph-51e5 .rough-ac7d {
    flex: 1;
}

/* Promo Calendar Section */
.huge-f662 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.background-cool-049e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .background-cool-049e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.caption-light-e062 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.banner-53c6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.search-south-41b5 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.heading_top_2559 {
    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);
}

.link-0127 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.accent-last-dbea {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.narrow-32bd {
    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);
}

.narrow-32bd p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.narrow-32bd strong {
    color: var(--accent-color);
}

/* Requirements Section */
.shadow_complex_b5f9 {
    padding: var(--section-padding);
}

.description-083c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .description-083c {
        grid-template-columns: repeat(2, 1fr);
    }
}

.item-7b71 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.thumbnail_narrow_2b55 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tabs-upper-cc68 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tabs-upper-cc68 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.mini_5d4e {
    margin-top: 3rem;
}

.mini_5d4e .aside-7fa7 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.mini_5d4e .pro_e34e {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.mini_5d4e .surface-f78c {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.mini_5d4e .surface-f78c li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.mini_5d4e .surface-f78c li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.mini_5d4e .surface-f78c li strong {
    color: var(--warning-color);
}

.small_9384 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.small_9384 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.tabs_c59f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.menu-db05 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .menu-db05 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.shade_next_4c16 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shade_next_4c16 .grid-bb55 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.alert-7ff3 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.glass-fe55 {
    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);
}

.glass-fe55:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.over_44d2 {
    font-size: 2rem;
    flex-shrink: 0;
}

.paper-0d75 {
    flex: 1;
}

.old_31f6 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.tag_a61f {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.slider_top_4d12 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.caption-orange-6eb2 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.advanced_b244 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .advanced_b244 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.article_d7f2 {
    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);
}

.article_d7f2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.overlay-short-dcfc {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.black-4409 {
    color: var(--text-gray);
    font-size: 1rem;
}

.caption_416c {
    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);
}

.layout_4d27 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.layout_4d27 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.shadow_2914 { 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; }
.chip_f8f8, .carousel_hot_24d8 { max-width:100%; height:auto; }

.table-386c, .notice_e1c5, .summary_dark_f0d6 { white-space:normal; }

.row_79d5,
.pink-c8b4,
.aside_4bef,
.tag_fb7a,
.brown-6dc8,
.bronze-3bd2 {
  flex-wrap:wrap;
}

[class*="grid"],
.advanced_b244,
.backdrop_warm_1ef4,
.container_f6f9 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.message_da8a img,
.pink-c8b4 img,
.glass_f300 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.outer_ec08, .advanced_419c,
.panel-5e0b, .footer-809d {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.solid-f0d2 { width:100%; overflow-x:auto; }
.solid-f0d2 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.video_6065 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .video_6065 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.brown-8929 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.middle_a489,
.row_6312,
.pagination_cb0c,
.secondary-2491,
.white_d298,
.advanced_b244,
.backdrop_warm_1ef4,
.container_f6f9,
.mask-b79f,
.tiny_e6fa,
.video_6065 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .middle_a489,
  .row_6312,
  .pagination_cb0c,
  .secondary-2491,
  .white_d298,
  .advanced_b244,
  .backdrop_warm_1ef4,
  .container_f6f9,
  .mask-b79f,
  .tiny_e6fa,
  .video_6065 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.thick_3955,
.layout_outer_d55c,
.article_d7f2,
.avatar_bottom_6954,
.hover-stale-ee62,
.center-69ed,
.gas-0df0,
.brown-8929 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.table_action_cbe0,
.slider_d6fc,
.sidebar_cool_9891 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.table_action_cbe0 > *,
.slider_d6fc > *,
.sidebar_cool_9891 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 0766 */
.ghost-box-y8 {
  padding: 0.4rem;
  font-size: 11px;
  line-height: 1.3;
}
