/* {$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;
}

.search_07a6 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.text-old-c680 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .text-old-c680 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .text-old-c680 {
        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 */
.hero-fast-7ff7 {
    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);
}

.outer_afc0 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .outer_afc0 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .accordion-stone-357b {
        grid-column: 1;
    }
    
    .notification_434d {
        grid-column: 2;
    }
    
    .dim_1ead {
        grid-column: 3;
    }
}

.accordion-stone-357b img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.accordion-stone-357b:hover img {
    transform: scale(1.05);
}

/* Navigation */
.hard-deb4 {
    display: none;
}

@media (min-width: 1024px) {
    .hard-deb4 {
        display: block;
    }
}

/* Grouped Navigation */
.sort-fac1 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.new_847c {
    position: relative;
}

.pro-3c9d {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.new_847c .gallery_silver_c705 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.gallery_silver_c705 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.icon-large-19ec {
    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;
}

.icon-large-19ec:hover,
.icon-large-19ec.fn-active-1b64 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.simple-0b60 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .simple-0b60 {
        display: flex;
    }
}

/* Mobile Register Button */
.notification_434d {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .notification_434d {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.photo-hard-e985 {
    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;
}

.photo-hard-e985::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 */
.dim_1ead {
    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) {
    .dim_1ead {
        display: none;
    }
}

.dim_1ead span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.dim_1ead.fn-active-1b64 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.dim_1ead.fn-active-1b64 span:nth-child(2) {
    opacity: 0;
}

.dim_1ead.fn-active-1b64 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mask_gas_8565 {
    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;
}

.mask_gas_8565.fn-active-1b64 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.silver-f05f {
    overflow: hidden;
}

.feature_6656 {
    list-style: none;
    padding: 0.75rem 0;
}

.next_046e {
    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;
}

.next_046e:hover,
.next_046e.fn-active-1b64 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.next_046e.medium_9bd1 {
    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;
}

.next_046e.medium_9bd1::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 */
.glass_18a3 {
    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;
}

.row-6e6a {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.row-6e6a:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.title_fluid_4462 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.title_fluid_4462:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.brown_6ca1 {
    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;
}

.brown_6ca1:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.slider-d2d6 {
    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;
}

.label_middle_0c74 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.label_middle_0c74:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.block_b2f1 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.block_b2f1:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.selected_2c8f {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.selected_2c8f: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);
}

.texture_large_e826 {
    font-size: 1em;
    font-weight: 700;
}

.section-1604 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.row-7045 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.row-7045::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;
}

.banner-5189 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .banner-5189 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.heading-de28 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.box_last_3cc6 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.frame_ce2b {
    margin-bottom: 2rem;
}

.motion_07e1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .motion_07e1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.yellow_de75 {
    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);
}

.header-stone-8961 {
    font-size: 1.5rem;
}

.header-pressed-3c75 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.disabled_top_9e63 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.avatar-selected-fd59 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.avatar-selected-fd59:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.active-5d8f {
    text-align: center;
    margin-bottom: 3rem;
}

.shadow-b5ec {
    margin-bottom: 1rem;
}

.chip-62fc {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.orange_96d6 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .orange_96d6 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .orange_96d6.breadcrumb_53f3 {
        direction: rtl;
    }
    
    .orange_96d6.breadcrumb_53f3 > * {
        direction: ltr;
    }
}

.advanced-296d {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.advanced-296d:first-child {
    margin-top: 0;
}

.slow-11a5 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.advanced_7f6c {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.advanced_7f6c:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.backdrop_outer_24b9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .backdrop_outer_24b9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.media-dirty-abb8 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.filter-0e43 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.row-11f1 {
    list-style: none;
}

.row-11f1 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.row-11f1 li:last-child {
    border-bottom: none;
}

/* Games Features */
.backdrop_60d1 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.focused_c832 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.active-plasma-317a {
    font-size: 2rem;
    flex-shrink: 0;
}

.grid_white_7b87 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.pagination_7742 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.search-13d7 {
    margin: 2rem 0;
}

.heading_purple_9dd9 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.tabs_pressed_fe7a {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.border-8baf {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.surface-40f2 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.media-2c65 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .media-2c65 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tabs-stone-7ba2 {
    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);
}

.tabs-stone-7ba2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.medium-557e {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.container_north_9cd9 {
    font-size: 1.5rem;
}

.hidden_full_913e {
    color: var(--accent-color);
    margin: 0;
}

.picture-slow-5468 {
    list-style: none;
}

.picture-slow-5468 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.picture-slow-5468 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.fixed-b77e {
    margin: 2rem 0;
}

.wrapper_north_0b27 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.center-33a4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .center-33a4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.static_5015 {
    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);
}

.picture-glass-ad07 {
    font-size: 1.25rem;
}

.message_dc13 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.out_9805,
.down_8a15 {
    text-align: center;
    margin: 2rem 0;
}

.element-05c5,
.solid_d4bd {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.disabled_db4b {
    margin: 2rem 0;
    text-align: center;
}

.medium-cfcb {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.medium-cfcb::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;
}

.modal_31e6 {
    position: relative;
    z-index: 1;
}

.pressed-c73d {
    margin-bottom: 1rem;
}

.paragraph_simple_1615 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.last_37b2 {
    margin-bottom: 3rem;
}

.label-gold-cbb7 {
    margin-top: 3rem;
}

.aside_094a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .aside_094a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.aside_094a .yellow_de75 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.thumbnail_4f9d {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.search-823c {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.outer-5af8 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.container_514e {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .container_514e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .container_514e {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.modal_6141 {
    margin-bottom: 1rem;
}

.tabs_281f img {
    margin-bottom: 1rem;
}

.layout-active-8a60 {
    color: var(--text-gray);
    line-height: 1.6;
}

.wide-e473 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.heading_9b97 {
    list-style: none;
}

.heading_9b97 li {
    margin-bottom: 0.5rem;
}

.heading_9b97 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.heading_9b97 a:hover {
    color: var(--accent-color);
}

.fixed_f91b {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.alert_purple_28ff {
    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);
}

.alert_purple_28ff:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.purple_7b93 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.purple_7b93 p {
    margin-bottom: 0.25rem;
}

.hovered_6746 {
    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) {
    .hovered_6746 {
        flex-direction: row;
    }
}

.section-red-f3ea {
    text-align: center;
}

@media (min-width: 768px) {
    .section-red-f3ea {
        text-align: left;
    }
}

.section-red-f3ea p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.solid-1640 {
    font-size: 0.75rem !important;
}

.prev-d0f5 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.shade-center-3ab1 {
    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);
    }
}

.basic_8a1d {
    animation: fadeInUp 0.6s ease-out;
}

.badge-silver-28be {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.aside_liquid_41d4 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .aside_liquid_41d4 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.static_a590 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .static_a590 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.surface_0ac1 {
    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);
}

.surface_0ac1 .active-plasma-317a {
    font-size: 1.25rem;
}

.surface_0ac1 .tertiary_cd41 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.image_pink_f35a {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .image_pink_f35a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.out-fc0e {
    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);
}

.out-fc0e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.background_6506 {
    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);
}

.feature-fresh-3de8 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.section-6614 {
    color: var(--text-gray);
    line-height: 1.6;
}

.primary_fixed_0189 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.active_3f59 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.active_3f59 .grid_white_7b87 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.active_3f59 .pagination_7742 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tooltip-smooth-9a5e {
    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);
}

.mask-77f8 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.mask-77f8 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.mask-77f8 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.item-59f9 {
    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);
}

.hard-5da4 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.first_2e34 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.first_2e34 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.first_2e34 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);
}

.first_2e34 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.first_2e34 input::placeholder {
    color: var(--text-muted);
}

.bronze_ec74 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.old-377a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.old-377a input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.card-silver-070f {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.card-silver-070f:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.center-33a4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .center-33a4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.static_5015 {
    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);
}

.static_5015 .picture-glass-ad07 {
    font-size: 1.25rem;
}

.static_5015 .message_dc13 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.paragraph-narrow-704e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.popup_slow_498d {
    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);
}

.popup_slow_498d .active-plasma-317a {
    font-size: 2rem;
    flex-shrink: 0;
}

.popup_slow_498d .grid_white_7b87 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.popup_slow_498d .pagination_7742 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tag_focused_1564 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.module_simple_19dd {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.module_simple_19dd .tag-163e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.module_simple_19dd .focus_c36d {
    color: var(--text-gray);
    line-height: 1.6;
}

.breadcrumb-liquid-6142 {
    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);
}

.preview-f507 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .preview-f507 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.out_7086 {
    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);
}

.out_7086:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.overlay-pressed-8b40 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.block_cfc5 {
    flex: 1;
}

.banner_31c1 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.highlight_1e44 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.sort-4a52 {
    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);
}

.sort-4a52:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.input-b443 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .input-b443 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.module-active-dc76 {
    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);
}

.module-active-dc76:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.backdrop_copper_a21c {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight_focused_8608 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stale_fbd4 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.box-pink-98f1 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.outline-bright-a1b2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.selected-23f5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.backdrop-current-b8a3 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.backdrop-current-b8a3 .lower-154e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.backdrop-current-b8a3 .sidebar_fresh_e588 {
    color: var(--text-gray);
    line-height: 1.6;
}

.outer_bbb0 {
    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);
}

.mini-e430 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.brown-7237 {
    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);
}

.brown-7237 .active-plasma-317a {
    font-size: 2rem;
    flex-shrink: 0;
}

.brown-7237 .grid_white_7b87 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.brown-7237 .pagination_7742 {
    color: var(--text-gray);
    line-height: 1.6;
}

.content-2341 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .content-2341 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.inner-5152 {
    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);
}

.inner-5152:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.huge_75bb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .huge_75bb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.white_604c {
    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);
}

.white_604c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pattern_716e {
    font-size: 2rem;
    flex-shrink: 0;
}

.logo-plasma-be7e {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.tabs_pressed_fe7a {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.surface-fb55 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.secondary_d816 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.outline-bright-75ee {
    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);
}

.outline-bright-75ee:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.cold_4e8e {
    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);
}

.hover_7bc0 {
    flex: 1;
}

.prev_3aeb {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.center_ee57 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.video_blue_c5bc {
    color: var(--text-gray);
    line-height: 1.6;
}

.lite_cdd3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.progress_medium_7d98 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.progress_medium_7d98 .tag-163e {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.progress_medium_7d98 .focus_c36d {
    color: var(--text-gray);
    line-height: 1.6;
}

.down_8a15 {
    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);
}

.button-soft-3e2a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .button-soft-3e2a {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.link-d6bd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .link-d6bd {
        grid-template-columns: repeat(4, 1fr);
    }
}

.popup_wood_b49b {
    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);
}

.popup_wood_b49b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.button_d4a4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.message-fresh-1140 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.preview_17a3 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.first-96ec {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.modal_edf6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.aside_dim_c87d {
    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);
}

.yellow-93fa {
    font-size: 2rem;
    flex-shrink: 0;
}

.active_mini_258a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.fixed_783c {
    color: var(--text-gray);
    line-height: 1.6;
}

.mini-e430 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.brown-7237 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.brown-7237 .grid_white_7b87 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.brown-7237 .pagination_7742 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hot-5fe4 {
    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);
}

.focus-4f3e {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .focus-4f3e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .focus-4f3e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.selected_181b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.selected_181b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.accent_9a06 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.left-128d {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.aside_prev_368a {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.summary_gold_3a9d {
    padding: 1.5rem;
}

.card-a339 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.next-2041 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.next-2041 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;
}

.next-2041 li:last-child {
    border-bottom: none;
}

.next-2041 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.link-d61b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .link-d61b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.link-wide-927d {
    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);
}

.link-wide-927d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.liquid-d1f2 {
    font-size: 2rem;
    flex-shrink: 0;
}

.sort_7e89 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.pink_f11c {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.progress_3805 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.widget-full-5f27 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tag-a886 {
    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);
}

.full-65cc {
    font-size: 2rem;
    flex-shrink: 0;
}

.card-5452 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.focus-light-a0c0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.picture-fast-569f {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.article_a02d {
    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);
}

.border-546c {
    text-align: center;
}

.smooth-785e {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tag_d9d7 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.surface_9bb4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sort_9803 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.sort_9803 .grid_white_7b87 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.sort_9803 .pagination_7742 {
    color: var(--text-gray);
    line-height: 1.6;
}

.paper_600a {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .paper_600a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .paper_600a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.complex_1a7a {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.complex_1a7a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.bronze_2b4b {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.nav-dim-43b8 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.grid_white_7b87 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.footer_2bc3 {
    padding: 1.5rem;
}

.pagination_7742 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.secondary_7b93 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.secondary_7b93 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;
}

.secondary_7b93 li:last-child {
    border-bottom: none;
}

.secondary_7b93 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.paragraph_7905 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.over_c3e2 {
    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);
}

.over_c3e2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.frame_f0ac {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.article-68a7 {
    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);
}

.background_6506 {
    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;
}

.feature-fresh-3de8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.section-6614 {
    color: var(--text-gray);
    line-height: 1.6;
}

.block_north_4e98 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.right-0e35 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.pagination_down_c749 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.center-7766 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.rough-f98c {
    display: flex;
    gap: 1rem;
}

.rough-f98c .wide_4ff5 {
    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;
}

.dropdown_c7d9 {
    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);
}

.photo_short_ac58 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.wrapper_solid_fe2c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wrapper_solid_fe2c 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;
}

.wrapper_solid_fe2c li:last-child {
    border-bottom: none;
}

.wrapper_solid_fe2c li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.in_1187 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .in_1187 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .in_1187 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.title-4084 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.title-4084:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.summary-79ea {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.logo-east-06d3 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.lower-154e {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.slider-light-1147 {
    font-size: 1rem;
}

.out-3b77 {
    padding: 1.5rem;
}

.sidebar_fresh_e588 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.thick_6d33 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.thick_6d33 .border-546c {
    text-align: center;
}

.thick_6d33 .tag_d9d7 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.thick_6d33 .narrow_6a1d {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.over-aa00 {
    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);
}

.over-aa00:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.picture-steel-ba25 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .picture-steel-ba25 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.west-fe99 {
    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);
}

.west-fe99:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.image_9181 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.soft-da14 {
    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);
}

.green-4a99 {
    font-size: 2rem;
    flex-shrink: 0;
}

.current_acea {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.nav-stone-5bcf {
    color: var(--text-gray);
    line-height: 1.6;
}

.heading_middle_4a72 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.iron_7b5a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.text_fast_c478 {
    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);
}

.sort-24ea {
    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;
}

.sort-24ea.video-glass-c10d {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.sort-24ea.title-b5ce {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.sort-24ea.fresh-2ea5 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.sort-24ea.caption_5cc4 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.sort-24ea.inner-bebb {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.thick-b120 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.disabled-15fe {
    color: var(--text-gray);
    line-height: 1.6;
}

.overlay_067c {
    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);
}

.main_hot_873c {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.tag_focused_1564 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tag_focused_1564 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;
}

.tag_focused_1564 li:last-child {
    border-bottom: none;
}

.tag_focused_1564 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.shadow_action_c144 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .shadow_action_c144 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .shadow_action_c144 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.image_top_12d7 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.image_top_12d7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.image_top_12d7.filter_1150 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .image_top_12d7.filter_1150 {
        grid-column: span 3;
    }
}

.menu-dim-e478 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.image_top_12d7.filter_1150 .menu-dim-e478 {
    background: rgba(6, 182, 212, 0.1);
}

.tabs_center_db4d {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.clean_dbf9 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.image_top_12d7.filter_1150 .clean_dbf9 {
    color: var(--info-color);
}

.item_0ecc {
    padding: 1.5rem;
    text-align: center;
}

.dim_ef9b {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.image_top_12d7.filter_1150 .dim_ef9b {
    color: var(--info-color);
}

.hidden-glass-9bf3 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.active-4f25 {
    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 */
.panel_db72 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .panel_db72 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.narrow_4c07 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.narrow_4c07:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.short_d924 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.popup_slow_498d {
    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);
}

.picture-glass-ad07 {
    font-size: 2rem;
    flex-shrink: 0;
}

.backdrop-active-9390 {
    flex: 1;
}

.wrapper_north_0b27 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.video_brown_5496 {
    color: var(--text-gray);
    line-height: 1.6;
}

.text-gold-f9b9 {
    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);
}

.preview_small_92fc {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.filter-022e {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.shade-center-3ab1 {
    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);
}

.steel-524c {
  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);
}

.steel-524c .border-546c {
    text-align: center;
}

.steel-524c .smooth-785e {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.steel-524c .tag_d9d7 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.west_b45f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.progress-8e73 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.in_bd7d {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.left_2e4e {
    color: var(--text-gray);
    line-height: 1.6;
}

.hero_9404 {
    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);
}

.text-c9c6 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.block_iron_5733 {
    color: var(--text-gray);
    line-height: 1.6;
}

.active-4a02 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .active-4a02 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .active-4a02 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.form_pro_d2be {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.form_pro_d2be:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.static_c630 {
    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);
}

.link_ea1c {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.light_4bca {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.tabs-rough-2bd5 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tabs-rough-2bd5.tertiary_iron_32ef {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.tabs-rough-2bd5.text-6ac0 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.tabs-rough-2bd5.notice-96d1 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.wide-03d9 {
    padding: 1.5rem;
    text-align: center;
}

.title_5588 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.highlight_complex_f86d {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.highlight_complex_f86d .filter_lite_ab2c {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.focused-a57a {
    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);
}

.focused-a57a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.center_f722 {
  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);
}

.green_9382 {
    text-align: center;
}

.green_9382 .smooth-785e {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.green_9382 .tag_d9d7 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.card_bright_6e01 { text-align: center; }
.over_5eab { text-align: left; }
.article-solid-c4f0 { text-align: right; }

.focus-1802 { margin-bottom: 0; }
.progress-1b26 { margin-bottom: 0.5rem; }
.old-3ad3 { margin-bottom: 1rem; }
.hero-fresh-718a { margin-bottom: 1.5rem; }
.widget_5489 { margin-bottom: 2rem; }

.hover_dc58 { margin-top: 0; }
.column_da87 { margin-top: 0.5rem; }
.title-f068 { margin-top: 1rem; }
.secondary-4e36 { margin-top: 1.5rem; }
.tertiary-7460 { margin-top: 2rem; }

.fn-hidden-1b64 { display: none; }
.fn-visible-1b64 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .row-7045 {
        padding: 6rem 0 3rem;
    }
    
    .banner-5189 {
        text-align: center;
    }
    
    .orange_96d6 {
        text-align: center;
    }
    
    .motion_07e1 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .hero-fast-7ff7,
    .mask_gas_8565,
    .medium-cfcb,
    .outer-5af8 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .row-7045 {
        background: none;
    }
}

/* Providers Section */
.hidden_a214 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.aside_d023 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .aside_d023 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .aside_d023 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.surface_2feb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.surface_2feb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.hot_5792 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.focused-c3df {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.photo-13dc {
    list-style: none;
    padding: 0;
}

.photo-13dc li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.photo-13dc li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.outline-medium-54ba {
    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);
}

.outline-medium-54ba p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.article_solid_5d9e {
    padding: var(--section-padding);
}

.status_stale_9208 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .status_stale_9208 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.breadcrumb_0d8d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.breadcrumb_0d8d:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.down_3a4e {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.heading_center_2db5 {
    display: flex;
    flex-direction: column;
}

.small_537c {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.blue_2a39 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.chip_1b1c {
    color: var(--accent-color);
}

.gallery_e7f6 {
    font-size: 1.25rem;
}

.preview_small_dc54 {
    margin-bottom: 1rem;
}

.preview_small_dc54 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.accent-narrow-4b55 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.popup-brown-7d34 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.border-546c {
    text-align: center;
}

.smooth-785e {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tag_d9d7 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.selected-c48e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.alert-active-f710 {
    margin: 2rem 0;
}

.in-cb62 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.in-cb62 .active-plasma-317a {
    font-size: 2rem;
    flex-shrink: 0;
}

.overlay_ff9f {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.banner-dynamic-b6f4 {
    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;
}

.banner-dynamic-b6f4:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.progress_934b {
    font-size: 2rem;
}

.hero-selected-0d21 {
    display: flex;
    flex-direction: column;
}

.message-6b6f {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.white_8a01 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.pattern_blue_96f1 {
    padding: var(--section-padding);
}

.new_1e2f {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .new_1e2f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .new_1e2f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pagination-5ced {
    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);
}

.pagination-5ced:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.pagination-5ced .smooth-785e {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.pagination-5ced .tag_d9d7 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.pagination-5ced .dynamic-5ec1 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.banner-cd1d {
    margin-top: 4rem;
}

.info_1232 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.footer-south-3efd {
    overflow-x: auto;
}

.shadow-4a4c {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.shadow-4a4c thead {
    background: var(--accent-color);
}

.shadow-4a4c th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.shadow-4a4c td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.shadow-4a4c tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.shadow-4a4c tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.hover-27c5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.accent_old_fa08 {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-40bd {
    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);
}

.accordion-40bd:hover {
    border-color: var(--accent-color);
}

.caption_complex_749e {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.caption_complex_749e h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.mini-252a {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.accordion-40bd.fn-active-1b64 .mini-252a {
    transform: rotate(45deg);
}

.media_north_01ce {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.accordion-40bd.fn-active-1b64 .media_north_01ce {
    max-height: 1000px;
}

.media_north_01ce p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.solid_b2a7 {
    padding: var(--section-padding);
}

.mask-77f8 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.media_rough_880d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.frame-wide-d6f1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .frame-wide-d6f1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.wood-6fae {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.narrow_3228 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.link_04dd {
    font-size: 2rem;
}

.photo-3f6a {
    color: var(--text-white);
    margin: 0;
}

.popup-2a95 {
    list-style: none;
    padding: 0;
}

.popup-2a95 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.popup-2a95 li:last-child {
    border-bottom: none;
}

.video_63cd {
    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);
}

.video_63cd p {
    color: var(--success-color);
    margin: 0;
}

.gradient-soft-d74d {
    margin-top: 3rem;
}

.photo_short_ac58 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.motion_2c95 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .motion_2c95 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.summary-thick-8d70 {
    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);
}

.media-eb80 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.summary-thick-8d70 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.stone_73a2 {
    padding: var(--section-padding);
}

.panel-d549 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .panel-d549 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hard-580f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.hard-580f:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.main-huge-d4f8 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.shadow_e3d1 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.heading_blue_27aa {
    flex: 1;
}

.accordion-a40c {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.form-lite-a5d2 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.black_35cf {
    color: var(--text-gray);
    line-height: 1.6;
}

.modal_first_0832 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal_first_0832:last-child {
    border-bottom: none;
}

/* Comparison Section */
.tabs-in-94c5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.pressed-883f {
    padding: var(--section-padding);
}

.tooltip-dim-0871 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.heading_cd32 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .heading_cd32 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.table_active_b78b {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.left-957d, .modal-hovered-9ab1, .aside-7356 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.aside-7356 {
    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 */
.pressed-d960 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.avatar-hovered-b5d1 {
    margin: 2rem 0;
}

.preview_7130 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.media_lower_795f {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.nav-inner-437e {
    list-style: none;
    padding: 0;
}

.nav-inner-437e 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;
}

.nav-inner-437e li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.nav-inner-437e li:last-child {
    border-bottom: none;
}

.pink_945e {
    text-align: center;
    margin-top: 2rem;
}

.title_586c {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.rough-b0cf {
    padding: var(--section-padding);
}

.fast_c9fc {
    margin: 2rem 0;
}

.section-dirty-4577 {
    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) {
    .section-dirty-4577 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.section-dirty-4577:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.card-black-2d21 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.middle_7ace {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.carousel-bottom-30d8 {
    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;
}

.feature-dynamic-22c2 {
    flex: 1;
}

.last_4d59 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.title_purple_c7c9 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.picture_focused_3bde {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.left_7bba {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .left_7bba {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.grid_2d5b {
    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);
}

.grid_2d5b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.grid_2d5b .smooth-785e {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.grid_2d5b .tag_d9d7 {
    color: var(--text-gray);
    font-size: 1rem;
}

.sidebar_over_1f06 {
    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);
}

.copper_d30c {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.copper_d30c strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.pattern_west_913d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .pattern_west_913d {
        grid-template-columns: 1fr 1fr;
    }
}

.gradient-8acc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.info_new_7585 {
    margin-bottom: 1.5rem;
}

.info_new_7585 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info_new_7585 input,
.info_new_7585 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;
}

.info_new_7585 input:focus,
.info_new_7585 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.preview-fff4 {
    width: 100%;
    margin-top: 1rem;
}

.container-cbb0 {
    display: flex;
    align-items: center;
}

.south-72e6 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.stale-f013 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.shade_pro_9765 {
    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;
}

.over-b761 {
    color: var(--text-gray);
}

.cool-e63a {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.link_paper_3646 {
    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);
}

.link_paper_3646 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.modal_6614 {
    margin-top: 3rem;
}

.video_95a5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.progress_copper_4cbe {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.yellow-e671 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.gallery_fluid_a6e0 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery_fluid_a6e0:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.info_2542 {
    padding: var(--section-padding);
}

.description-4b07 {
    margin: 2rem 0;
}

.media-thick-d2d8 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.notice-yellow-a8b6 {
    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;
}

.notice-yellow-a8b6:hover, .notice-yellow-a8b6.fn-active-1b64 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.fresh_22d4 {
    display: none;
}

.fresh_22d4.fn-active-1b64 {
    display: block;
}

.cool-f61f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.simple-15e3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.copper_c77d h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.copper_c77d ul {
    list-style: none;
    padding: 0;
}

.copper_c77d ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.copper_c77d ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.list_silver_2344 {
    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 */
.article_2d95 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hero_348e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.soft-916e {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.grid-purple-3e32 {
    color: var(--accent-color);
    margin: 0;
}

.overlay-9bb6 {
    display: flex;
    gap: 1.5rem;
}

.top_2d1a {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.outline-dirty-b12e {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.primary_f935 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.primary_f935.carousel-3d49 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.primary_f935.preview-cold-88f5 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.primary_f935.text_action_1e2f {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.white-498c {
    margin-top: 2rem;
}

.feature_999a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.sort_77e3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .sort_77e3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.list-aa8e {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.bright_340c {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.thick-c27e {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.gradient-brown-c8b8 {
    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 */
.summary_narrow_5484 {
    padding: var(--section-padding);
}

.focused-5485 {
    margin: 2rem 0;
}

.focused_c626 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.fresh_dd8b {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.hidden_1df6 {
    list-style: none;
    padding: 0;
}

.hidden_1df6 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;
}

.hidden_1df6 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.hidden_1df6 li:last-child {
    border-bottom: none;
}

.mask_first_5354 {
    margin: 2rem 0;
}

.filter_ef14 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.dark-e18a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .dark-e18a {
        grid-template-columns: repeat(2, 1fr);
    }
}

.info-focused-3487 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dim_689a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.accordion_pink_94a1 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.wrapper-basic-57b6 {
    margin-top: 2rem;
}

.banner_31c1 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.paper-bebe {
    list-style: none;
    padding: 0;
}

.info_purple_b4fd {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.info_purple_b4fd a {
    color: var(--accent-color);
    text-decoration: none;
}

.info_purple_b4fd a:hover {
    text-decoration: underline;
}

.dropdown_b485 {
    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 */
.sidebar_in_402c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.yellow_6cf3 {
    margin: 2rem 0;
}

.dirty_12bd {
    margin-bottom: 3rem;
}

.dirty_12bd .media_lower_795f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.thumbnail_light_a547 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.row-rough-d249 {
    padding: 0.75rem 1.25rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-full);
    color: var(--text-gray);
    font-size: 0.875rem;
    transition: var(--transition-normal);
}

.row-rough-d249:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.right-4a89 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .right-4a89 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.container_60be {
    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 */
.cold_df68 {
    padding: var(--section-padding);
}

.lite-64f6 {
    margin: 2rem 0;
}

.carousel-outer-b899 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.hidden-old-ccd9 {
    overflow-x: auto;
    margin: 2rem 0;
}

.paragraph-eddc {
    background: rgba(6, 182, 212, 0.1) !important;
}

.column_upper_fafe {
    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;
}

.new_47d4 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.liquid-d4c8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .liquid-d4c8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hard-9b33 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hard-9b33 .active-plasma-317a {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.hard-9b33 .grid_white_7b87 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.section_light_71f4 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.purple-c6e2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tabs-5111 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tabs-5111 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.status_2b08 {
    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;
}

.status_2b08:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.icon_selected_6574 {
    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);
}

.row-complex-9ca0 {
    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;
}

.pressed-4d06 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.basic_6411 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.input_current_849c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.button_huge_9f4c {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.backdrop-ae21 {
    color: var(--text-white);
    font-weight: 600;
}

.avatar_copper_a62b {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.fixed-8f03 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fixed-8f03 .wide_4ff5 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.pagination_solid_1485 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .pagination_solid_1485 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.simple-ba46 {
    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);
}

.simple-ba46:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.simple-ba46 .smooth-785e {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.simple-ba46 .tag_d9d7 {
    color: var(--text-gray);
    font-size: 1rem;
}

.preview-b67e {
    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);
}

.dim-34d0 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.dim-34d0 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.modal_edf6 {
    margin: 2rem 0;
}

.aside_dim_c87d {
    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);
}

.aside_dim_c87d:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.yellow-93fa {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.box_in_6beb {
    flex: 1;
}

.active_mini_258a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.fixed_783c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.mini-e430 {
    margin: 2rem 0;
}

.brown-7237 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.brown-7237 .grid_white_7b87 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.brown-7237 .pagination_7742 {
    color: var(--text-gray);
    margin: 0;
}

.hot-5fe4 {
    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);
}

.hot-5fe4 .element-05c5 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.section_light_71f4 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.cold_4e8e {
    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;
}

.hover_7bc0 {
    flex: 1;
}

.center_ee57 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.video_blue_c5bc {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.background_6506 {
    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;
}

.prev-a33e {
    flex: 1;
}

.feature-fresh-3de8 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.section-6614 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.pagination_down_c749 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.center-7766 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.rough-f98c {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.rough-f98c .wide_4ff5 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.dropdown_c7d9 {
    margin-top: 2rem;
}

.dropdown_c7d9 .photo_short_ac58 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.box-0fe9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.article_a02d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .article_a02d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.article_a02d .border-546c {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.surface_9bb4 {
    margin: 2rem 0;
}

.sort_9803 {
    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 */
.thumbnail_684a {
    padding: var(--section-padding);
}

.footer_2bc3 {
    margin-top: 1rem;
}

.secondary_7b93 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.secondary_7b93 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.secondary_7b93 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.description_lite_3bd1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.modal-9ad4 {
    margin: 2rem 0;
}

.light_9352 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.slow-b3ca {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.aside_4057 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.nav_liquid_d689 {
    margin: 2rem 0;
}

.description_d3e5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.description_d3e5 .media_lower_795f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.glass_c3c1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .glass_c3c1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.glass_cc59 {
    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);
}

.alert_light_7fd2 {
    color: var(--text-white);
    font-weight: 600;
}

.old-4803 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.modal-2cc0 {
    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);
}

.modal-2cc0 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.bottom-6791 {
    padding: var(--section-padding);
}

.heading-stone-ca5b {
    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;
}

.heading-stone-ca5b:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.action_472e {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.action_472e .media-eb80 {
    font-size: 2rem;
    flex-shrink: 0;
}

.action_472e .accent-d507 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.description_bd9e {
    flex: 1;
}

.stone-b8c1 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.accent-f56d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accent-f56d li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.accent-f56d li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.info-advanced-1719 {
    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);
}

.info-advanced-1719 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.info-advanced-1719 strong {
    color: var(--warning-color);
}

/* Slots Section */
.top_a4a3 {
    padding: var(--section-padding);
}

.outline-bright-a1b2 {
    margin: 2rem 0;
}

/* Table Games Section */
.tabs-4919 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.selected-23f5 {
    margin: 2rem 0;
}

.backdrop-current-b8a3 {
    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);
}

.backdrop-current-b8a3:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.backdrop-current-b8a3 .lower-154e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.backdrop-current-b8a3 .sidebar_fresh_e588 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.outer_bbb0 {
    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);
}

.outer_bbb0 .element-05c5 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.aside_b175 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pagination_basic_7ebc {
    margin: 2rem 0;
}

.menu-basic-b216 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.warm-7ef5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.short-4a87 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.stale_e747 {
    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);
}

.stale_e747:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.stale_e747.fn-active-1b64 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.top_ed6c {
    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);
}

.simple-5d04 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.simple-5d04 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.first_7814 {
    padding: var(--section-padding);
}

.main_static_f5cf {
    margin: 2rem 0;
}

.avatar_4985 {
    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);
}

.avatar_4985:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .avatar_4985 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.slider_23f1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.easy_6565 {
    flex: 1;
}

.notice-active-4de1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.accordion-4e10 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.selected_06fa {
    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_cool_165b {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.nav_glass_75cd {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.slider_bottom_25f3 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.white-afd8 {
    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;
}

.white-afd8:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.gradient_7cff {
    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);
}

.search-basic-f548 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.search-basic-f548 strong {
    color: var(--accent-color);
}

/* New Games Section */
.center-fe82 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.carousel-middle-c01e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .carousel-middle-c01e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .carousel-middle-c01e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accordion-hard-2cae {
    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;
}

.accordion-hard-2cae:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.preview_414e {
    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;
}

.tertiary-4351 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.white_961d {
    font-size: 2rem;
}

.silver_b903 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.steel-2989 {
    flex: 1;
}

.label_huge_0000 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.image_cold_0f4b {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.form_motion_ee88 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.list-1b4a {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.badge-simple-8e14 {
    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;
}

.lower-07b9 {
    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;
}

.lower-07b9:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.icon-24e4 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.photo-9134 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hero_copper_14eb {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hero_copper_14eb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-outer-f440 {
    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);
}

.advanced-3617 {
    color: var(--text-white);
    font-weight: 600;
}

.nav_de05 {
    color: var(--accent-color);
    font-weight: 600;
}

.preview_focused_d7cd {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.preview_focused_d7cd strong {
    color: var(--accent-color);
}

/* Security Section */
.modal-fixed-fb01 {
    padding: var(--section-padding);
}

/* Benefits Section */
.video-large-b830 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.wrapper_5ea5 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.footer-3094 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.south_f24f {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.item-fdb5 {
    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) {
    .item-fdb5 {
        flex-direction: column;
        gap: 1rem;
    }
}

.item-fdb5:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.item-fdb5 .background_6506 {
    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;
}

.item-fdb5 .prev-a33e {
    flex: 1;
}

.item-fdb5 .feature-fresh-3de8 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.item-fdb5 .section-6614 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.next_8f9f {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.next_8f9f .wrapper_north_0b27 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.next_8f9f .paragraph-narrow-704e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.next_8f9f .paragraph-narrow-704e li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.next_8f9f .paragraph-narrow-704e li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.text-light-04ea {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.fixed_3bbe {
    padding: var(--section-padding);
}

.menu-59dc {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .menu-59dc {
        grid-template-columns: repeat(3, 1fr);
    }
}

.chip_hovered_d30d {
    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);
}

.chip_hovered_d30d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.chip_hovered_d30d .east-74c6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.chip_hovered_d30d .input-f494 {
    flex: 1;
}

.chip_hovered_d30d .tag-163e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.chip_hovered_d30d .tall-9e41 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.sort_df2d {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.sort_df2d .hidden_rough_0a08 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.sort_df2d .description-hard-3031 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.sort_df2d .description-hard-3031 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);
}

.sort_df2d .description-hard-3031 li:last-child {
    border-bottom: none;
}

.sort_df2d .description-hard-3031 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;
}

.sort_df2d .description-hard-3031 li strong {
    color: var(--text-white);
}

.info-prev-c198 {
    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);
}

.info-prev-c198 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.info-prev-c198 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.tabs_5589 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.box_ae87 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .box_ae87 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.section_bottom_6ef3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.section_bottom_6ef3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.summary-red-5d6a {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.disabled_in_e788 {
    font-size: 2rem;
}

.accent-stone-19ef {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.image_steel_816b {
    flex: 1;
}

.grid_3d8d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.grid_3d8d li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.grid_3d8d li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.lower-d518 {
    margin-top: 3rem;
}

.focused_c626 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.fresh_dd8b {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hidden_1df6 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hidden_1df6 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.hidden_1df6 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.hidden_1df6 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.copper-963e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hero_short_5348 {
    margin: 2rem 0;
}

.north-1fdb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.north-1fdb .media_lower_795f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.active_4984 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .active_4984 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.video_fd88 {
    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);
}

.video_fd88:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.input_glass_2b7a {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gradient-ecc2 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.filter_narrow_f158 {
    padding: var(--section-padding);
}

.article_full_d4da {
    margin: 2rem 0;
}

.button-in-dbf9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .button-in-dbf9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .button-in-dbf9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.accordion_cc75 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.accordion_cc75:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.heading_67ae {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.pro-e2b4 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.outline_fixed_03ae {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.outline_fixed_03ae.item-294c {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.table-short-b751 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.thumbnail_dynamic_c744 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.photo-slow-3213 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.left_17f2 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.motion_7efa {
    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);
}

.motion_7efa p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.motion_7efa strong {
    color: var(--accent-color);
}

/* Update Log Section */
.shadow_narrow_4c5e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.filter-advanced-dca2 {
    margin: 2rem 0;
}

.tabs_smooth_c27b {
    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) {
    .tabs_smooth_c27b {
        flex-direction: column;
        gap: 1rem;
    }
}

.tabs_smooth_c27b:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.tabs_smooth_c27b::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);
}

.highlight-6c7b {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.texture-old-26f3 {
    flex: 1;
}

.detail_static_baab {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.photo_e78c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.photo_e78c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.fluid_9718 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.background_tiny_75ee {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.active_ee01 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .active_ee01 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.disabled-206f {
    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);
}

.narrow-d85d {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.hot_e88e {
    flex: 1;
}

.up-3869 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.paper-f321 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.complex_97a6 {
    margin-top: 2rem;
    text-align: center;
}

.notification-b3cf {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.notification-b3cf strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.picture-steel-ba25 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .picture-steel-ba25 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.west-fe99 {
    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);
}

.west-fe99:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.west-fe99 .liquid-d1f2 {
    font-size: 2rem;
    flex-shrink: 0;
}

.west-fe99 .sort_7e89 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.west-fe99 .pink_f11c {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.west-fe99 .progress_3805 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.carousel-6741 {
    padding: var(--section-padding);
}

.soft-da14 .content_724e {
    flex: 1;
}

/* Promo Calendar Section */
.accordion_hot_3906 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.upper_b96c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .upper_b96c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.down-b57a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pattern-c95d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.menu_wood_741e {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.overlay-medium-e1d1 {
    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);
}

.red_5ab1 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.pro-8484 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.pattern_112d {
    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);
}

.pattern_112d p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.pattern_112d strong {
    color: var(--accent-color);
}

/* Requirements Section */
.detail-top-ed54 {
    padding: var(--section-padding);
}

.section_action_c393 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .section_action_c393 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pattern_stale_997f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.thumbnail_action_b8e3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.input-d530 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.input-d530 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.filter-center-e9ee {
    margin-top: 3rem;
}

.filter-center-e9ee .focused_c626 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.filter-center-e9ee .fresh_dd8b {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.filter-center-e9ee .hidden_1df6 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.filter-center-e9ee .hidden_1df6 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.filter-center-e9ee .hidden_1df6 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.filter-center-e9ee .hidden_1df6 li strong {
    color: var(--warning-color);
}

.dropdown_0d21 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.dropdown_0d21 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.tabs_hard_8090 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.photo-a32a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .photo-a32a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.block_7e6b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.block_7e6b .media_lower_795f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.item-f173 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.icon_2858 {
    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);
}

.icon_2858:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.accent-879b {
    font-size: 2rem;
    flex-shrink: 0;
}

.grid_liquid_26f3 {
    flex: 1;
}

.highlight-f7f6 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.element-3563 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.form-gas-e3b1 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.preview-center-43f3 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.cold_1e6f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .cold_1e6f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accordion_6c16 {
    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);
}

.accordion_6c16:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.aside_5b07 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.image_fast_6f7c {
    color: var(--text-gray);
    font-size: 1rem;
}

.copper_d30c {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.media-8afc {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.media-8afc strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.text-old-c680 { 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; }
.avatar-selected-fd59, .advanced_7f6c { max-width:100%; height:auto; }

.glass_18a3, .brown_6ca1, .slider-d2d6 { white-space:normal; }

.banner-5189,
.orange_96d6,
.panel_db72,
.picture-steel-ba25,
.mini-e430,
.active-4a02 {
  flex-wrap:wrap;
}

[class*="grid"],
.cold_1e6f,
.button-in-dbf9,
.aside_094a {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.row-7045 img,
.orange_96d6 img,
.disabled_top_9e63 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.heading-de28, .box_last_3cc6,
.shadow-b5ec, .chip-62fc {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.footer-south-3efd { width:100%; overflow-x:auto; }
.footer-south-3efd table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.aside_d023 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .aside_d023 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.surface_2feb {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.new_1e2f,
.widget_slow_5329,
.rough-08bc,
.middle-3834,
.left_7bba,
.cold_1e6f,
.button-in-dbf9,
.aside_094a,
.center_f722,
.main_static_f5cf,
.aside_d023 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .new_1e2f,
  .widget_slow_5329,
  .rough-08bc,
  .middle-3834,
  .left_7bba,
  .cold_1e6f,
  .button-in-dbf9,
  .aside_094a,
  .center_f722,
  .main_static_f5cf,
  .aside_d023 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.pagination-5ced,
.grid_2d5b,
.accordion_6c16,
.yellow_de75,
.accordion_cc75,
.green_9382,
.avatar_4985,
.surface_2feb {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.breadcrumb_green_51d1,
.short-dbf7,
.gradient_0122 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.breadcrumb_green_51d1 > *,
.short-dbf7 > *,
.gradient_0122 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 65f6 */
.phantom-card-m9 {
  padding: 0.2rem;
  font-size: 12px;
  line-height: 1.2;
}
