/* {$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;
}

.hidden_south_14ad {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.table-yellow-2333 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .table-yellow-2333 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .table-yellow-2333 {
        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 */
.alert_thick_3bd6 {
    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);
}

.first_fd3f {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .first_fd3f {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .bottom_a786 {
        grid-column: 1;
    }
    
    .content-4f68 {
        grid-column: 2;
    }
    
    .feature-6037 {
        grid-column: 3;
    }
}

.bottom_a786 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.bottom_a786:hover img {
    transform: scale(1.05);
}

/* Navigation */
.widget-a691 {
    display: none;
}

@media (min-width: 1024px) {
    .widget-a691 {
        display: block;
    }
}

/* Grouped Navigation */
.footer-iron-4493 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.dropdown-d466 {
    position: relative;
}

.image_cold_11e6 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.dropdown-d466 .red-13d8 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.red-13d8 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.pressed_c0ee {
    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;
}

.pressed_c0ee:hover,
.pressed_c0ee.fn-active-2e4d {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.modal_3a05 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .modal_3a05 {
        display: flex;
    }
}

/* Mobile Register Button */
.content-4f68 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .content-4f68 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.slow-9c85 {
    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;
}

.slow-9c85::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 */
.feature-6037 {
    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) {
    .feature-6037 {
        display: none;
    }
}

.feature-6037 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.feature-6037.fn-active-2e4d span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.feature-6037.fn-active-2e4d span:nth-child(2) {
    opacity: 0;
}

.feature-6037.fn-active-2e4d span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.section-fast-aac5 {
    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;
}

.section-fast-aac5.fn-active-2e4d {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.video-ca5e {
    overflow: hidden;
}

.progress_fast_4ba7 {
    list-style: none;
    padding: 0.75rem 0;
}

.secondary-mini-37c0 {
    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;
}

.secondary-mini-37c0:hover,
.secondary-mini-37c0.fn-active-2e4d {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.secondary-mini-37c0.main_smooth_52fd {
    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;
}

.secondary-mini-37c0.main_smooth_52fd::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 */
.dirty_9aaa {
    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;
}

.preview_5da2 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.preview_5da2:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.backdrop-easy-d411 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.backdrop-easy-d411:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.chip-smooth-c2c2 {
    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;
}

.chip-smooth-c2c2:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.gallery-cba9 {
    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;
}

.status_under_8ff1 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.status_under_8ff1:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.button_in_5dba {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.button_in_5dba:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.shadow-98ba {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.shadow-98ba: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);
}

.cool-bc63 {
    font-size: 1em;
    font-weight: 700;
}

.right_5d06 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.texture_164e {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.texture_164e::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;
}

.gradient-slow-a87a {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .gradient-slow-a87a {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.grid-slow-8592 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.glass_80b3 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.status_fast_cbcc {
    margin-bottom: 2rem;
}

.wrapper-motion-ce3b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .wrapper-motion-ce3b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sort_eb63 {
    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);
}

.texture-f116 {
    font-size: 1.5rem;
}

.dirty_324d {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.hover-yellow-74b0 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.brown_e3b7 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.brown_e3b7:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.huge-d609 {
    text-align: center;
    margin-bottom: 3rem;
}

.tooltip_glass_aaf9 {
    margin-bottom: 1rem;
}

.container-out-c23e {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.accent_5d96 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .accent_5d96 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .accent_5d96.info-top-a771 {
        direction: rtl;
    }
    
    .accent_5d96.info-top-a771 > * {
        direction: ltr;
    }
}

.paper-83ba {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.paper-83ba:first-child {
    margin-top: 0;
}

.image_875c {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.paragraph_black_f743 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.paragraph_black_f743:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.tag-out-87ed {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tag-out-87ed {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hover_c342 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.label_eab8 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.modal-hard-9f16 {
    list-style: none;
}

.modal-hard-9f16 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-hard-9f16 li:last-child {
    border-bottom: none;
}

/* Games Features */
.cold-c3fd {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.aside_ad11 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.fixed_c1c2 {
    font-size: 2rem;
    flex-shrink: 0;
}

.box-3bb1 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.video_44bb {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.left-986d {
    margin: 2rem 0;
}

.icon_ef48 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.grid_c95a {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.hidden_4e04 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.aside-rough-3068 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.tooltip-4eb3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tooltip-4eb3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.popup_rough_af88 {
    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);
}

.popup_rough_af88:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.overlay-66ba {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.plasma_b19f {
    font-size: 1.5rem;
}

.hard_512b {
    color: var(--accent-color);
    margin: 0;
}

.menu_0c41 {
    list-style: none;
}

.menu_0c41 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.menu_0c41 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.description-center-1490 {
    margin: 2rem 0;
}

.complex_c66a {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.hard-d185 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .hard-d185 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.column_pink_7580 {
    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);
}

.description_aa01 {
    font-size: 1.25rem;
}

.heading_4d06 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.mask_stale_b375,
.highlight-6c66 {
    text-align: center;
    margin: 2rem 0;
}

.avatar_fe4c,
.container_556b {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.fluid_0403 {
    margin: 2rem 0;
    text-align: center;
}

.accordion-out-87b8 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.accordion-out-87b8::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;
}

.texture-b3d3 {
    position: relative;
    z-index: 1;
}

.gold-ed1d {
    margin-bottom: 1rem;
}

.form-outer-73d0 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thick_8d6c {
    margin-bottom: 3rem;
}

.link-south-abef {
    margin-top: 3rem;
}

.secondary-72a5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .secondary-72a5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.secondary-72a5 .sort_eb63 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.info-e055 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.box-light-54db {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.detail-d3d9 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.hot-829a {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .hot-829a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hot-829a {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.focus-wide-7ff3 {
    margin-bottom: 1rem;
}

.dynamic_d6cd img {
    margin-bottom: 1rem;
}

.texture-middle-48e6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.huge_8734 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.column-50f7 {
    list-style: none;
}

.column-50f7 li {
    margin-bottom: 0.5rem;
}

.column-50f7 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.column-50f7 a:hover {
    color: var(--accent-color);
}

.media-large-a8c5 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hero-up-fbdb {
    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);
}

.hero-up-fbdb:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.footer_e405 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.footer_e405 p {
    margin-bottom: 0.25rem;
}

.border-17b1 {
    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) {
    .border-17b1 {
        flex-direction: row;
    }
}

.avatar_medium_95c4 {
    text-align: center;
}

@media (min-width: 768px) {
    .avatar_medium_95c4 {
        text-align: left;
    }
}

.avatar_medium_95c4 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.shadow_hard_f179 {
    font-size: 0.75rem !important;
}

.first-2f15 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.red_6aa0 {
    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);
    }
}

.medium_1b7b {
    animation: fadeInUp 0.6s ease-out;
}

.surface-fixed-a83c {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.top_e39e {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .top_e39e {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.gradient-7be6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gradient-7be6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.content_b49f {
    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);
}

.content_b49f .fixed_c1c2 {
    font-size: 1.25rem;
}

.content_b49f .component_brown_a149 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.pressed_9105 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .pressed_9105 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.huge-35c6 {
    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);
}

.huge-35c6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hidden-ec17 {
    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);
}

.grid_cool_f05d {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.card-mini-1568 {
    color: var(--text-gray);
    line-height: 1.6;
}

.wrapper_narrow_8451 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.avatar_9b75 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.avatar_9b75 .box-3bb1 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.avatar_9b75 .video_44bb {
    color: var(--text-gray);
    line-height: 1.6;
}

.container-dark-685b {
    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);
}

.search_active_492a {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.search_active_492a img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.search_active_492a img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.tag_dark_2d3c {
    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);
}

.bright_73c0 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.article-pink-b110 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.article-pink-b110 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.article-pink-b110 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);
}

.article-pink-b110 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.article-pink-b110 input::placeholder {
    color: var(--text-muted);
}

.east-30e3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.notification-selected-787b {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.notification-selected-787b input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.article_dark_8efb {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.article_dark_8efb:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.hard-d185 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hard-d185 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.column_pink_7580 {
    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);
}

.column_pink_7580 .description_aa01 {
    font-size: 1.25rem;
}

.column_pink_7580 .heading_4d06 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.center-13f4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.heading_bd74 {
    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);
}

.heading_bd74 .fixed_c1c2 {
    font-size: 2rem;
    flex-shrink: 0;
}

.heading_bd74 .box-3bb1 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.heading_bd74 .video_44bb {
    color: var(--text-gray);
    line-height: 1.6;
}

.widget_smooth_6f8d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.warm-82c1 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.warm-82c1 .in_f455 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.warm-82c1 .basic-3b5b {
    color: var(--text-gray);
    line-height: 1.6;
}

.focus-8a12 {
    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-stale-55bc {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .button-stale-55bc {
        grid-template-columns: repeat(3, 1fr);
    }
}

.chip_6d9d {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    transition: var(--transition-normal);
}

.chip_6d9d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.breadcrumb-clean-a9bd {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.main_wood_5628 {
    flex: 1;
}

.blue_5c77 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.glass_7aea {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tall_5a4c {
    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);
}

.tall_5a4c:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.gradient_8816 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gradient_8816 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hover-lower-bbea {
    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);
}

.hover-lower-bbea:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.text_last_872e {
    font-size: 2rem;
    flex-shrink: 0;
}

.shadow_active_1502 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.icon_plasma_af1c {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.slider-current-1924 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.advanced-b0cd {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.info-9a25 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wide-03b2 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.wide-03b2 .dynamic_e8b3 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.wide-03b2 .module-purple-92c9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.lower-d545 {
    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);
}

.column-orange-3d4d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.smooth_a28f {
    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);
}

.smooth_a28f .fixed_c1c2 {
    font-size: 2rem;
    flex-shrink: 0;
}

.smooth_a28f .box-3bb1 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.smooth_a28f .video_44bb {
    color: var(--text-gray);
    line-height: 1.6;
}

.hero-south-8e75 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hero-south-8e75 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.rough-d86c {
    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);
}

.rough-d86c:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.nav-action-f8ff {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .nav-action-f8ff {
        grid-template-columns: repeat(4, 1fr);
    }
}

.button-upper-b876 {
    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);
}

.button-upper-b876:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.clean_8b1d {
    font-size: 2rem;
    flex-shrink: 0;
}

.steel_539b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.grid_c95a {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.alert_293e {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.element-3afb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.background-5f67 {
    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);
}

.background-5f67:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.smooth-8ed2 {
    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);
}

.medium_24de {
    flex: 1;
}

.next-3309 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.container-lower-e542 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.banner-smooth-d523 {
    color: var(--text-gray);
    line-height: 1.6;
}

.inner-917f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.alert_3abf {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.alert_3abf .in_f455 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.alert_3abf .basic-3b5b {
    color: var(--text-gray);
    line-height: 1.6;
}

.highlight-6c66 {
    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);
}

.hot_0782 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hot_0782 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.form_pink_a887 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .form_pink_a887 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stale-b17e {
    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);
}

.stale-b17e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.slow_cf3d {
    font-size: 2rem;
    flex-shrink: 0;
}

.summary_rough_1de8 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.border-a82b {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.media_right_26f9 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.north_be21 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.complex-960d {
    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);
}

.tabs_tall_b7fe {
    font-size: 2rem;
    flex-shrink: 0;
}

.red-a692 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tabs_prev_cb4c {
    color: var(--text-gray);
    line-height: 1.6;
}

.column-orange-3d4d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.smooth_a28f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.smooth_a28f .box-3bb1 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.smooth_a28f .video_44bb {
    color: var(--text-gray);
    line-height: 1.6;
}

.backdrop_fresh_94ce {
    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);
}

.table-basic-5a16 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .table-basic-5a16 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .table-basic-5a16 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cool-c7a1 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.cool-c7a1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.yellow_83de {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.disabled-2527 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.texture-orange-e7e5 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.last_6ebd {
    padding: 1.5rem;
}

.pattern_medium_10a0 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.paragraph-motion-e0fa {
    list-style: none;
    padding: 0;
    margin: 0;
}

.paragraph-motion-e0fa li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.paragraph-motion-e0fa li:last-child {
    border-bottom: none;
}

.paragraph-motion-e0fa li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.badge_af37 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .badge_af37 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.blue-fa40 {
    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);
}

.blue-fa40:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gradient-easy-4c2d {
    font-size: 2rem;
    flex-shrink: 0;
}

.hovered-fdd5 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.message_c175 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.bottom-88f4 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.liquid-caf9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.item-ea4f {
    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);
}

.box_ab4c {
    font-size: 2rem;
    flex-shrink: 0;
}

.cool_0324 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hard-fcbf {
    color: var(--text-gray);
    line-height: 1.6;
}

.glass_3d3f {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.button_64eb {
    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);
}

.red_0b67 {
    text-align: center;
}

.north_e1e3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.accordion-4c15 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.primary_d9cb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.clean_b84e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.clean_b84e .box-3bb1 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.clean_b84e .video_44bb {
    color: var(--text-gray);
    line-height: 1.6;
}

.aside-60d0 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .aside-60d0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .aside-60d0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.caption_37a3 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.caption_37a3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.label-1cfd {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.out-4104 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.box-3bb1 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.video-978d {
    padding: 1.5rem;
}

.video_44bb {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pattern-db88 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pattern-db88 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;
}

.pattern-db88 li:last-child {
    border-bottom: none;
}

.pattern-db88 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.text-glass-5a83 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.form-f6be {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.form-f6be:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.container-cd7e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.header-dirty-06fe {
    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);
}

.hidden-ec17 {
    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;
}

.grid_cool_f05d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.card-mini-1568 {
    color: var(--text-gray);
    line-height: 1.6;
}

.surface-430c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.old-e73f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.purple_3d97 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.content_68ae {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.center-c61b {
    display: flex;
    gap: 1rem;
}

.center-c61b .wide-62fc {
    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;
}

.notification-stone-7114 {
    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);
}

.background-iron-b315 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.wrapper-507e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wrapper-507e 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-507e li:last-child {
    border-bottom: none;
}

.wrapper-507e li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.old-4156 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .old-4156 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .old-4156 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.inner-c31d {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.inner-c31d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.active_3d66 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.layout_out_20e3 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.dynamic_e8b3 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.shade_action_a0a7 {
    font-size: 1rem;
}

.middle_e10c {
    padding: 1.5rem;
}

.module-purple-92c9 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.upper-7dc8 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.upper-7dc8 .red_0b67 {
    text-align: center;
}

.upper-7dc8 .accordion-4c15 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.upper-7dc8 .content-wide-6411 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.highlight_8b5c {
    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);
}

.highlight_8b5c:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.paragraph-3783 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .paragraph-3783 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.button-0749 {
    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);
}

.button-0749:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.panel-pro-6968 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.active-11e4 {
    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);
}

.east_7b28 {
    font-size: 2rem;
    flex-shrink: 0;
}

.detail-full-9de0 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.image-smooth-0092 {
    color: var(--text-gray);
    line-height: 1.6;
}

.link_huge_41f5 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.primary-7697 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tall-0f57 {
    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);
}

.east-97f2 {
    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;
}

.east-97f2.bottom_bd34 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.east-97f2.frame_779b {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.east-97f2.accent_bright_77d4 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.east-97f2.pattern_bottom_6261 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.east-97f2.section-new-21de {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.south_9287 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.grid_smooth_5550 {
    color: var(--text-gray);
    line-height: 1.6;
}

.gallery-2173 {
    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);
}

.carousel-fcd3 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.widget_smooth_6f8d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget_smooth_6f8d 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;
}

.widget_smooth_6f8d li:last-child {
    border-bottom: none;
}

.widget_smooth_6f8d li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.inner-dc74 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .inner-dc74 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .inner-dc74 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.section_south_6d89 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.section_south_6d89:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.section_south_6d89.slider_2b19 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .section_south_6d89.slider_2b19 {
        grid-column: span 3;
    }
}

.info-4d1a {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.section_south_6d89.slider_2b19 .info-4d1a {
    background: rgba(6, 182, 212, 0.1);
}

.cool-bcd2 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.slider_3bbb {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.section_south_6d89.slider_2b19 .slider_3bbb {
    color: var(--info-color);
}

.modal-short-dd4b {
    padding: 1.5rem;
    text-align: center;
}

.steel-e207 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.section_south_6d89.slider_2b19 .steel-e207 {
    color: var(--info-color);
}

.shadow_ed29 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.aside-736d {
    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 */
.pagination_ffc8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .pagination_ffc8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dark-90d0 {
    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);
}

.dark-90d0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.image-5c26 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.heading_bd74 {
    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);
}

.description_aa01 {
    font-size: 2rem;
    flex-shrink: 0;
}

.filter_left_8302 {
    flex: 1;
}

.complex_c66a {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.mask-9881 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tag-0a1c {
    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);
}

.mini-5bc0 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.primary_e0d5 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.red_6aa0 {
    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);
}

.up_fb00 {
  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);
}

.up_fb00 .red_0b67 {
    text-align: center;
}

.up_fb00 .north_e1e3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.up_fb00 .accordion-4c15 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.detail_static_9a32 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.advanced-ea13 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.thick-dc8d {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.heading_0bc1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.content_da6d {
    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);
}

.outline_right_3938 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.grid_mini_2305 {
    color: var(--text-gray);
    line-height: 1.6;
}

.row_dim_098d {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .row_dim_098d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .row_dim_098d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.label-brown-415f {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.label-brown-415f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.search-432f {
    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);
}

.gas_7ca2 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.active_5266 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.surface-current-b3b5 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.surface-current-b3b5.banner_3d43 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.surface-current-b3b5.light-2ac9 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.surface-current-b3b5.block-3c6e {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.paragraph_inner_dce9 {
    padding: 1.5rem;
    text-align: center;
}

.wrapper-south-fdd8 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.popup_e882 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.popup_e882 .text-5c20 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.banner-a656 {
    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);
}

.banner-a656:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.focus_silver_cce8 {
  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);
}

.static-1c39 {
    text-align: center;
}

.static-1c39 .north_e1e3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.static-1c39 .accordion-4c15 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.tiny-5dc7 { text-align: center; }
.wrapper_left_9c37 { text-align: left; }
.hovered_7a84 { text-align: right; }

.paragraph-last-8fd0 { margin-bottom: 0; }
.filter_2516 { margin-bottom: 0.5rem; }
.input_full_78f6 { margin-bottom: 1rem; }
.next_4504 { margin-bottom: 1.5rem; }
.hot_ee66 { margin-bottom: 2rem; }

.stone_cb49 { margin-top: 0; }
.pressed_478b { margin-top: 0.5rem; }
.accent_d291 { margin-top: 1rem; }
.gold-e081 { margin-top: 1.5rem; }
.detail-green-e6b8 { margin-top: 2rem; }

.fn-hidden-2e4d { display: none; }
.fn-visible-2e4d { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .texture_164e {
        padding: 6rem 0 3rem;
    }
    
    .gradient-slow-a87a {
        text-align: center;
    }
    
    .accent_5d96 {
        text-align: center;
    }
    
    .wrapper-motion-ce3b {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .alert_thick_3bd6,
    .section-fast-aac5,
    .accordion-out-87b8,
    .detail-d3d9 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .texture_164e {
        background: none;
    }
}

/* Providers Section */
.aside_ac38 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hard-a754 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hard-a754 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hard-a754 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.prev-e361 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.prev-e361:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.motion_5a94 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.border_8953 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.search_tiny_2e0c {
    list-style: none;
    padding: 0;
}

.search_tiny_2e0c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.search_tiny_2e0c li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.message-fast-f0b2 {
    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);
}

.message-fast-f0b2 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.hot-f2d0 {
    padding: var(--section-padding);
}

.hidden_9534 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hidden_9534 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.focus-67b9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.focus-67b9:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.element_dark_8c49 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.message-22ca {
    display: flex;
    flex-direction: column;
}

.carousel_purple_cf18 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.card-a6d2 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.video-large-ac3a {
    color: var(--accent-color);
}

.mask-8ff7 {
    font-size: 1.25rem;
}

.backdrop_advanced_04ad {
    margin-bottom: 1rem;
}

.backdrop_advanced_04ad p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.item-e8da {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.notice-clean-aa49 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.red_0b67 {
    text-align: center;
}

.north_e1e3 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.accordion-4c15 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.active-new-3e4d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.label-db5d {
    margin: 2rem 0;
}

.content_6107 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.content_6107 .fixed_c1c2 {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-bottom-2a60 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.copper_5f83 {
    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;
}

.copper_5f83:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.dynamic-e975 {
    font-size: 2rem;
}

.focus_31d1 {
    display: flex;
    flex-direction: column;
}

.video-6515 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.hover-5c8e {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.layout-3714 {
    padding: var(--section-padding);
}

.outer-86b5 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .outer-86b5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .outer-86b5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.large_df1b {
    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);
}

.large_df1b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.large_df1b .north_e1e3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.large_df1b .accordion-4c15 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.large_df1b .up_87d9 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.middle-09cb {
    margin-top: 4rem;
}

.feature-1865 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.basic_215c {
    overflow-x: auto;
}

.short_5130 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.short_5130 thead {
    background: var(--accent-color);
}

.short_5130 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.short_5130 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.short_5130 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.short_5130 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.feature_a527 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.content-4d39 {
    max-width: 900px;
    margin: 0 auto;
}

.thumbnail_a47d {
    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);
}

.thumbnail_a47d:hover {
    border-color: var(--accent-color);
}

.down-05e7 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.down-05e7 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.yellow_19d5 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.thumbnail_a47d.fn-active-2e4d .yellow_19d5 {
    transform: rotate(45deg);
}

.nav-slow-2663 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.thumbnail_a47d.fn-active-2e4d .nav-slow-2663 {
    max-height: 1000px;
}

.nav-slow-2663 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.accent-a2de {
    padding: var(--section-padding);
}

.search_active_492a {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.outer_61b7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.carousel_soft_e544 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .carousel_soft_e544 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.next-e9b8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.header_6f36 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.photo-hot-31dc {
    font-size: 2rem;
}

.button_narrow_1c72 {
    color: var(--text-white);
    margin: 0;
}

.main_red_6284 {
    list-style: none;
    padding: 0;
}

.main_red_6284 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main_red_6284 li:last-child {
    border-bottom: none;
}

.element-dynamic-171f {
    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);
}

.element-dynamic-171f p {
    color: var(--success-color);
    margin: 0;
}

.active_9455 {
    margin-top: 3rem;
}

.background-iron-b315 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.rough_2d59 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .rough_2d59 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.layout-1a7b {
    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);
}

.solid-739d {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.layout-1a7b p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.cool_505f {
    padding: var(--section-padding);
}

.south-8d86 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .south-8d86 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.link-63d4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.link-63d4:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.plasma_69e6 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.old_530a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.glass-3a17 {
    flex: 1;
}

.aside_f8dd {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.info-warm-4b1f {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.footer-f1f4 {
    color: var(--text-gray);
    line-height: 1.6;
}

.column_6c69 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.column_6c69:last-child {
    border-bottom: none;
}

/* Comparison Section */
.stone-a677 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.video-hard-4963 {
    padding: var(--section-padding);
}

.carousel_dim_e685 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.picture_7684 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .picture_7684 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.popup-east-64bc {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.chip-24f7, .white-c778, .bronze_31de {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.bronze_31de {
    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 */
.orange-e53a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.wrapper-cold-6ab3 {
    margin: 2rem 0;
}

.sort-next-391e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.mask-3402 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.highlight_first_6fef {
    list-style: none;
    padding: 0;
}

.highlight_first_6fef 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;
}

.highlight_first_6fef li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.highlight_first_6fef li:last-child {
    border-bottom: none;
}

.modal-a428 {
    text-align: center;
    margin-top: 2rem;
}

.main_complex_bf34 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.pagination-9c55 {
    padding: var(--section-padding);
}

.aside_0753 {
    margin: 2rem 0;
}

.info_hard_7b98 {
    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) {
    .info_hard_7b98 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.info_hard_7b98:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.pattern-3c42 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.layout-old-47d7 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.dropdown_01d8 {
    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;
}

.gradient_bece {
    flex: 1;
}

.card_af46 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.layout_ca29 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.feature_light_86eb {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.description-7b1d {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .description-7b1d {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.top_9d68 {
    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);
}

.top_9d68:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.top_9d68 .north_e1e3 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.top_9d68 .accordion-4c15 {
    color: var(--text-gray);
    font-size: 1rem;
}

.notice_585f {
    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);
}

.accordion-wide-3127 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.accordion-wide-3127 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.sidebar_easy_8a10 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .sidebar_easy_8a10 {
        grid-template-columns: 1fr 1fr;
    }
}

.dirty-401b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.section_5ebe {
    margin-bottom: 1.5rem;
}

.section_5ebe label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.section_5ebe input,
.section_5ebe 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;
}

.section_5ebe input:focus,
.section_5ebe select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.black-5c1b {
    width: 100%;
    margin-top: 1rem;
}

.component_small_6f99 {
    display: flex;
    align-items: center;
}

.smooth_313b {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.video_4c5e {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.main_6c9e {
    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;
}

.hidden_thick_4eb3 {
    color: var(--text-gray);
}

.tag_paper_2a1e {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.item-pro-587a {
    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);
}

.item-pro-587a p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.thumbnail_b22b {
    margin-top: 3rem;
}

.search_c199 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.wide_d24e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.breadcrumb-yellow-5d02 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.main-smooth-66c2 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-smooth-66c2:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.motion-5cbe {
    padding: var(--section-padding);
}

.up-3b1e {
    margin: 2rem 0;
}

.link_new_ef8d {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.soft_f0bd {
    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;
}

.soft_f0bd:hover, .soft_f0bd.fn-active-2e4d {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.status_9df6 {
    display: none;
}

.status_9df6.fn-active-2e4d {
    display: block;
}

.pattern-6f44 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tabs_stone_83af {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.pro-4035 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.pro-4035 ul {
    list-style: none;
    padding: 0;
}

.pro-4035 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.pro-4035 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.module-0968 {
    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 */
.module_old_1c0d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.heading-9c76 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hover_easy_f6e1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.silver_e5be {
    color: var(--accent-color);
    margin: 0;
}

.avatar-green-fd02 {
    display: flex;
    gap: 1.5rem;
}

.main_a367 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.overlay-motion-d908 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.shade-cd02 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.shade-cd02.gas-e063 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.shade-cd02.gold_14b6 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.shade-cd02.banner_medium_af43 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.basic_bdc6 {
    margin-top: 2rem;
}

.hover-red-938e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.picture-south-ca7f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .picture-south-ca7f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.carousel_iron_47cd {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.tiny_2c07 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.disabled-fast-b294 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.input-narrow-6863 {
    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_down_e01e {
    padding: var(--section-padding);
}

.fluid-0ef1 {
    margin: 2rem 0;
}

.carousel-hard-68b9 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.active-f336 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.fluid_778e {
    list-style: none;
    padding: 0;
}

.fluid_778e 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;
}

.fluid_778e li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.fluid_778e li:last-child {
    border-bottom: none;
}

.gold_2094 {
    margin: 2rem 0;
}

.pattern_orange_ad0d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.wrapper_outer_a2b4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .wrapper_outer_a2b4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.wrapper_8863 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.notification-c5b4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.input-9ad0 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.inner-a4d9 {
    margin-top: 2rem;
}

.blue_5c77 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.hidden-gas-0d08 {
    list-style: none;
    padding: 0;
}

.filter_smooth_13fa {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.filter_smooth_13fa a {
    color: var(--accent-color);
    text-decoration: none;
}

.filter_smooth_13fa a:hover {
    text-decoration: underline;
}

.wide-f8c4 {
    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 */
.header_2637 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.lower_6fc5 {
    margin: 2rem 0;
}

.hidden_33e2 {
    margin-bottom: 3rem;
}

.hidden_33e2 .mask-3402 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.clean-f78e {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.outline-edc4 {
    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);
}

.outline-edc4:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.aside-focused-4665 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .aside-focused-4665 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.basic-22fb {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

/* Odds Comparison Section */
.column-old-c59f {
    padding: var(--section-padding);
}

.container-da21 {
    margin: 2rem 0;
}

.huge-403a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.tall_1c4e {
    overflow-x: auto;
    margin: 2rem 0;
}

.stale_0f76 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.surface-silver-ce0e {
    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;
}

.accent-6c27 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.clean-20ea {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .clean-20ea {
        grid-template-columns: repeat(3, 1fr);
    }
}

.old_a5ad {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.old_a5ad .fixed_c1c2 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.old_a5ad .box-3bb1 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.notification_gas_a080 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.bottom_650a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.green_e077 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .green_e077 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.paragraph-4317 {
    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;
}

.paragraph-4317:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.right_8d09 {
    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);
}

.info_hot_59bd {
    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;
}

.description_tiny_54b1 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.hard_6dfe {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.card-pro-696e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.secondary_static_707d {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pro-5613 {
    color: var(--text-white);
    font-weight: 600;
}

.row_8cf6 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.description-pink-d735 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.description-pink-d735 .wide-62fc {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.media-fast-6759 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .media-fast-6759 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.widget_west_439c {
    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);
}

.widget_west_439c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.widget_west_439c .north_e1e3 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.widget_west_439c .accordion-4c15 {
    color: var(--text-gray);
    font-size: 1rem;
}

.sidebar-upper-a39c {
    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);
}

.block-f403 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.block-f403 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.north_be21 {
    margin: 2rem 0;
}

.complex-960d {
    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);
}

.complex-960d:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.tabs_tall_b7fe {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.breadcrumb-c31d {
    flex: 1;
}

.red-a692 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tabs_prev_cb4c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.column-orange-3d4d {
    margin: 2rem 0;
}

.smooth_a28f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.smooth_a28f .box-3bb1 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.smooth_a28f .video_44bb {
    color: var(--text-gray);
    margin: 0;
}

.backdrop_fresh_94ce {
    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);
}

.backdrop_fresh_94ce .avatar_fe4c {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.notification_gas_a080 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.smooth-8ed2 {
    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;
}

.medium_24de {
    flex: 1;
}

.container-lower-e542 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.banner-smooth-d523 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.hidden-ec17 {
    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;
}

.full_7829 {
    flex: 1;
}

.grid_cool_f05d {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.card-mini-1568 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.purple_3d97 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.content_68ae {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.center-c61b {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.center-c61b .wide-62fc {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.notification-stone-7114 {
    margin-top: 2rem;
}

.notification-stone-7114 .background-iron-b315 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.dropdown_bebf {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.button_64eb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .button_64eb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.button_64eb .red_0b67 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.primary_d9cb {
    margin: 2rem 0;
}

.clean_b84e {
    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 */
.silver-a4e2 {
    padding: var(--section-padding);
}

.video-978d {
    margin-top: 1rem;
}

.pattern-db88 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.pattern-db88 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.pattern-db88 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.mask_f952 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.backdrop-pink-04b7 {
    margin: 2rem 0;
}

.sort-old-f09b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.simple-92bc {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.out_be3b {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.feature_lower_f40f {
    margin: 2rem 0;
}

.stone_b1e8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.stone_b1e8 .mask-3402 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.pagination_lite_5125 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .pagination_lite_5125 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dark-f68c {
    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);
}

.status-b3c6 {
    color: var(--text-white);
    font-weight: 600;
}

.black-e94a {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.focused-fc29 {
    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);
}

.focused-fc29 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.progress-bce4 {
    padding: var(--section-padding);
}

.preview-d3a0 {
    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;
}

.preview-d3a0:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.section-tiny-1a60 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-tiny-1a60 .solid-739d {
    font-size: 2rem;
    flex-shrink: 0;
}

.section-tiny-1a60 .brown_5b1d {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.card-7e4f {
    flex: 1;
}

.content-2ebe {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.tooltip_d186 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tooltip_d186 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.tooltip_d186 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.banner-6d2f {
    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);
}

.banner-6d2f p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.banner-6d2f strong {
    color: var(--warning-color);
}

/* Slots Section */
.button_green_e93f {
    padding: var(--section-padding);
}

.advanced-b0cd {
    margin: 2rem 0;
}

/* Table Games Section */
.heading-0d0e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.info-9a25 {
    margin: 2rem 0;
}

.wide-03b2 {
    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);
}

.wide-03b2:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.wide-03b2 .dynamic_e8b3 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.wide-03b2 .module-purple-92c9 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.lower-d545 {
    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);
}

.lower-d545 .avatar_fe4c {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.paper_74d1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.breadcrumb-fluid-3980 {
    margin: 2rem 0;
}

.button-8c46 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.middle_3400 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.logo_b66b {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.content-over-c48a {
    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);
}

.content-over-c48a:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.content-over-c48a.fn-active-2e4d {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.icon_fresh_a837 {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.accordion-0f62 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.accordion-0f62 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.mask-dd2a {
    padding: var(--section-padding);
}

.hover_cold_40c6 {
    margin: 2rem 0;
}

.west-5c52 {
    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);
}

.west-5c52:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .west-5c52 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.yellow_1779 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.tag_medium_637b {
    flex: 1;
}

.card_medium_dd15 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.purple_eee8 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.tooltip_fixed_0f28 {
    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;
}

.avatar-868a {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.nav-ce3a {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.shade-hard-401f {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.fluid_8f37 {
    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;
}

.fluid_8f37:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.media-3a95 {
    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);
}

.paragraph-081c {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.paragraph-081c strong {
    color: var(--accent-color);
}

/* New Games Section */
.solid-54eb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.action-f9f9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .action-f9f9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .action-f9f9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.icon-wood-2d24 {
    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;
}

.icon-wood-2d24:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.title-silver-247e {
    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;
}

.container_e725 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.in_6bde {
    font-size: 2rem;
}

.full_be2b {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.full_9ff3 {
    flex: 1;
}

.alert_large_c388 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.north_dd99 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.row-dim-97d4 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.label-b3c5 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.modal-f28c {
    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;
}

.component_pink_732d {
    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;
}

.component_pink_732d:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.item-c767 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.message-1d03 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.dropdown-cea1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .dropdown-cea1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.accent-next-7765 {
    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);
}

.motion-443b {
    color: var(--text-white);
    font-weight: 600;
}

.logo-mini-4c43 {
    color: var(--accent-color);
    font-weight: 600;
}

.complex_7c3b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.complex_7c3b strong {
    color: var(--accent-color);
}

/* Security Section */
.texture_wood_b9b9 {
    padding: var(--section-padding);
}

/* Benefits Section */
.tag-0da1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.breadcrumb_lower_c2f2 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.footer_cf12 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.input-d03f {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.slider_old_60f1 {
    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) {
    .slider_old_60f1 {
        flex-direction: column;
        gap: 1rem;
    }
}

.slider_old_60f1:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.slider_old_60f1 .hidden-ec17 {
    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;
}

.slider_old_60f1 .full_7829 {
    flex: 1;
}

.slider_old_60f1 .grid_cool_f05d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.slider_old_60f1 .card-mini-1568 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.title-0b30 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.title-0b30 .complex_c66a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.title-0b30 .center-13f4 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.title-0b30 .center-13f4 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.title-0b30 .center-13f4 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.thick_d204 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.logo-ac2f {
    padding: var(--section-padding);
}

.nav-367d {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .nav-367d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.disabled-pro-b3e1 {
    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);
}

.disabled-pro-b3e1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.disabled-pro-b3e1 .pagination_bronze_1902 {
    font-size: 2rem;
    flex-shrink: 0;
}

.disabled-pro-b3e1 .link_becd {
    flex: 1;
}

.disabled-pro-b3e1 .in_f455 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.disabled-pro-b3e1 .in_4e32 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.top-6431 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.top-6431 .table-cold-9f90 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.top-6431 .wrapper-021b {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.top-6431 .wrapper-021b 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);
}

.top-6431 .wrapper-021b li:last-child {
    border-bottom: none;
}

.top-6431 .wrapper-021b 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;
}

.top-6431 .wrapper-021b li strong {
    color: var(--text-white);
}

.description_1e73 {
    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);
}

.description_1e73 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.description_1e73 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.basic-801f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.thumbnail_fd41 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .thumbnail_fd41 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.grid_stone_2483 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.grid_stone_2483:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.hidden-stone-0922 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-21ff {
    font-size: 2rem;
}

.soft-38b3 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.paper_7464 {
    flex: 1;
}

.pattern-fluid-63fb {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pattern-fluid-63fb li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.pattern-fluid-63fb li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.full_6ba0 {
    margin-top: 3rem;
}

.carousel-hard-68b9 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.active-f336 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.fluid_778e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fluid_778e li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.fluid_778e li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.fluid_778e li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.pink-306e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.section-fluid-fa6c {
    margin: 2rem 0;
}

.large-53b9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.large-53b9 .mask-3402 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.dropdown-bc70 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .dropdown-bc70 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.wood_0a47 {
    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);
}

.wood_0a47:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.glass-b466 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.section-wood-eedf {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.notification-8117 {
    padding: var(--section-padding);
}

.liquid_ecae {
    margin: 2rem 0;
}

.hover-e1fb {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .hover-e1fb {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hover-e1fb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.out_5e1a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.out_5e1a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.in-46b1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.new_5e9f {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.pink_e9e8 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pink_e9e8.tabs_inner_90b4 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.card-3140 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.wrapper-brown-c999 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.bronze-7695 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.info_97bf {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.logo_1ca4 {
    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);
}

.logo_1ca4 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.logo_1ca4 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.accordion-606e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.disabled-db2d {
    margin: 2rem 0;
}

.small-cc89 {
    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) {
    .small-cc89 {
        flex-direction: column;
        gap: 1rem;
    }
}

.small-cc89:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.small-cc89::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);
}

.cold-bd28 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.tertiary-static-d0d1 {
    flex: 1;
}

.footer-last-f912 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.header-glass-2da2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-glass-2da2 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.notice-pink-26f7 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.light_648f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.motion-4ae8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .motion-4ae8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.middle_765e {
    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);
}

.silver-9796 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.description-prev-61d5 {
    flex: 1;
}

.active-hard-ea14 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.alert_9e8e {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.copper-505e {
    margin-top: 2rem;
    text-align: center;
}

.cold_1228 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.cold_1228 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.paragraph-3783 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .paragraph-3783 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.button-0749 {
    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);
}

.button-0749:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.button-0749 .gradient-easy-4c2d {
    font-size: 2rem;
    flex-shrink: 0;
}

.button-0749 .hovered-fdd5 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.button-0749 .message_c175 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.button-0749 .bottom-88f4 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.gradient-pressed-ba04 {
    padding: var(--section-padding);
}

.active-11e4 .card-plasma-934c {
    flex: 1;
}

/* Promo Calendar Section */
.heading_east_3d01 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.fluid-89fa {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fluid-89fa {
        grid-template-columns: repeat(3, 1fr);
    }
}

.button_pro_29bf {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.footer_e432 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.action-dba8 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.element-lite-2556 {
    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);
}

.overlay_531b {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.text_fresh_7e71 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.sidebar_aa93 {
    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);
}

.sidebar_aa93 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.sidebar_aa93 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.section_9cf2 {
    padding: var(--section-padding);
}

.preview-aec0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .preview-aec0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.card-gold-86f8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.breadcrumb-5930 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.complex-8ddc {
    list-style: none;
    padding: 0;
    margin: 0;
}

.complex-8ddc li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.secondary_53fd {
    margin-top: 3rem;
}

.secondary_53fd .carousel-hard-68b9 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.secondary_53fd .active-f336 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.secondary_53fd .fluid_778e {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.secondary_53fd .fluid_778e li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.secondary_53fd .fluid_778e li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.secondary_53fd .fluid_778e li strong {
    color: var(--warning-color);
}

.tabs_new_1e1f {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.tabs_new_1e1f strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.shadow_right_0009 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.thumbnail_basic_a400 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .thumbnail_basic_a400 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hovered_883f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hovered_883f .mask-3402 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.nav-caee {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.heading-4e1d {
    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);
}

.heading-4e1d:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.highlight-bronze-c1e4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.silver_a2a4 {
    flex: 1;
}

.filter_c8cc {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.light_5863 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.shade_green_ccd6 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.module_c0ca {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.solid_b4aa {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .solid_b4aa {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pagination-in-235f {
    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);
}

.pagination-in-235f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.hidden-169e {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.table-glass-0722 {
    color: var(--text-gray);
    font-size: 1rem;
}

.accordion-wide-3127 {
    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);
}

.mini-5e10 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.mini-5e10 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.table-yellow-2333 { 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; }
.brown_e3b7, .paragraph_black_f743 { max-width:100%; height:auto; }

.dirty_9aaa, .chip-smooth-c2c2, .gallery-cba9 { white-space:normal; }

.gradient-slow-a87a,
.accent_5d96,
.pagination_ffc8,
.paragraph-3783,
.column-orange-3d4d,
.row_dim_098d {
  flex-wrap:wrap;
}

[class*="grid"],
.solid_b4aa,
.hover-e1fb,
.secondary-72a5 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.texture_164e img,
.accent_5d96 img,
.hover-yellow-74b0 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.grid-slow-8592, .glass_80b3,
.tooltip_glass_aaf9, .container-out-c23e {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.basic_215c { width:100%; overflow-x:auto; }
.basic_215c table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.hard-a754 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .hard-a754 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.prev-e361 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.outer-86b5,
.detail_55d9,
.container-d171,
.lite_2106,
.description-7b1d,
.solid_b4aa,
.hover-e1fb,
.secondary-72a5,
.focus_silver_cce8,
.hover_cold_40c6,
.hard-a754 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .outer-86b5,
  .detail_55d9,
  .container-d171,
  .lite_2106,
  .description-7b1d,
  .solid_b4aa,
  .hover-e1fb,
  .secondary-72a5,
  .focus_silver_cce8,
  .hover_cold_40c6,
  .hard-a754 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.large_df1b,
.top_9d68,
.pagination-in-235f,
.sort_eb63,
.out_5e1a,
.static-1c39,
.west-5c52,
.prev-e361 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.background-691c,
.gas-e6e0,
.widget_fresh_9590 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.background-691c > *,
.gas-e6e0 > *,
.widget_fresh_9590 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 66a7 */
.phantom-card-w8 {
  padding: 0.5rem;
  font-size: 14px;
  line-height: 1.0;
}
