/* {$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;
}

.wrapper-easy-6cfa {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.label-02fb {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .label-02fb {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .label-02fb {
        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 */
.summary_yellow_97f8 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(30, 27, 75, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.media-huge-3a71 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .media-huge-3a71 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .tabs-south-c5de {
        grid-column: 1;
    }
    
    .sidebar-old-6d3e {
        grid-column: 2;
    }
    
    .current-ef70 {
        grid-column: 3;
    }
}

.tabs-south-c5de img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.tabs-south-c5de:hover img {
    transform: scale(1.05);
}

/* Navigation */
.module_in_3cd0 {
    display: none;
}

@media (min-width: 1024px) {
    .module_in_3cd0 {
        display: block;
    }
}

/* Grouped Navigation */
.badge_white_4511 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.iron-9bf0 {
    position: relative;
}

.link-upper-a34b {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.iron-9bf0 .list_2a1d {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.list_2a1d {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.icon_upper_9ba0 {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    position: relative;
    font-size: 0.9rem;
}

.icon_upper_9ba0:hover,
.icon_upper_9ba0.fn-active-ac25 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.sidebar-e57d {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .sidebar-e57d {
        display: flex;
    }
}

/* Mobile Register Button */
.sidebar-old-6d3e {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .sidebar-old-6d3e {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.gas-ab01 {
    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;
}

.gas-ab01::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 */
.current-ef70 {
    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) {
    .current-ef70 {
        display: none;
    }
}

.current-ef70 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.current-ef70.fn-active-ac25 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.current-ef70.fn-active-ac25 span:nth-child(2) {
    opacity: 0;
}

.current-ef70.fn-active-ac25 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.layout_current_6eb0 {
    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;
}

.layout_current_6eb0.fn-active-ac25 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.picture_cb82 {
    overflow: hidden;
}

.tag_south_9348 {
    list-style: none;
    padding: 0.75rem 0;
}

.border_5a99 {
    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;
}

.border_5a99:hover,
.border_5a99.fn-active-ac25 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.border_5a99.chip_dim_027e {
    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;
}

.border_5a99.chip_dim_027e::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 */
.secondary_north_0fe6 {
    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;
}

.tertiary-lower-3c13 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.tertiary-lower-3c13:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.focus_b5ee {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.focus_b5ee:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.image-outer-20b3 {
    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;
}

.image-outer-20b3:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.top-714e {
    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;
}

.pink_6a33 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.pink_6a33:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.disabled-pressed-8893 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.disabled-pressed-8893:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.hovered_6c04 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.hovered_6c04: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);
}

.outer-e590 {
    font-size: 1em;
    font-weight: 700;
}

.media_d7b7 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.detail-9644 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.detail-9644::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;
}

.hard_c7d5 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .hard_c7d5 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.outline_brown_e7c5 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.shade_last_d5a5 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.preview_current_457c {
    margin-bottom: 2rem;
}

.status_narrow_4853 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .status_narrow_4853 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.smooth_9876 {
    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);
}

.solid-39de {
    font-size: 1.5rem;
}

.mask_232f {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.fresh_5b8a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.north-3100 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.north-3100:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.wood_757d {
    text-align: center;
    margin-bottom: 3rem;
}

.gas_e00e {
    margin-bottom: 1rem;
}

.component_rough_7547 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.tabs-8138 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .tabs-8138 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .tabs-8138.text-basic-f8d8 {
        direction: rtl;
    }
    
    .tabs-8138.text-basic-f8d8 > * {
        direction: ltr;
    }
}

.lite-736e {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.lite-736e:first-child {
    margin-top: 0;
}

.fixed-27ff {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.chip_red_aec7 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.chip_red_aec7:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.tall_c98c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tall_c98c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.outer_d386 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.accordion-8cc6 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.texture-fca6 {
    list-style: none;
}

.texture-fca6 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.texture-fca6 li:last-child {
    border-bottom: none;
}

/* Games Features */
.motion_77ee {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.focus-5e3b {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.narrow-ade8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.accent-c5b0 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.footer-current-decd {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.black_99b6 {
    margin: 2rem 0;
}

.bronze_cdd1 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.thick-3e50 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.banner_smooth_2f13 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.list-d0c8 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.image-narrow-4fbb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .image-narrow-4fbb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.complex_c1c3 {
    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);
}

.complex_c1c3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.popup_clean_8747 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.tooltip-light-6425 {
    font-size: 1.5rem;
}

.solid-9214 {
    color: var(--accent-color);
    margin: 0;
}

.in-30e3 {
    list-style: none;
}

.in-30e3 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.in-30e3 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.shadow_53c1 {
    margin: 2rem 0;
}

.dirty-0a8a {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.gold-5125 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .gold-5125 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.nav-4219 {
    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);
}

.slider-tall-d235 {
    font-size: 1.25rem;
}

.slider_d14f {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.focus-c459,
.form-cool-7ffe {
    text-align: center;
    margin: 2rem 0;
}

.hot_b8c5,
.frame-7bac {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.lite_8f2f {
    margin: 2rem 0;
    text-align: center;
}

.texture_c7de {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.texture_c7de::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;
}

.pattern-a984 {
    position: relative;
    z-index: 1;
}

.hero-1762 {
    margin-bottom: 1rem;
}

.carousel-cc1a {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.item_cold_8b92 {
    margin-bottom: 3rem;
}

.layout-white-03ed {
    margin-top: 3rem;
}

.bronze-039e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .bronze-039e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.bronze-039e .smooth_9876 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.item_6539 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.center-9e6e {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.dark_6bef {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.popup_wide_f40d {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .popup_wide_f40d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .popup_wide_f40d {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.solid_e632 {
    margin-bottom: 1rem;
}

.overlay_c291 img {
    margin-bottom: 1rem;
}

.last_c4d8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.thick-437d {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.thumbnail_1ba0 {
    list-style: none;
}

.thumbnail_1ba0 li {
    margin-bottom: 0.5rem;
}

.thumbnail_1ba0 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.thumbnail_1ba0 a:hover {
    color: var(--accent-color);
}

.accent_dirty_2708 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.thumbnail-action-ed6b {
    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);
}

.thumbnail-action-ed6b:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.status-9cc8 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.status-9cc8 p {
    margin-bottom: 0.25rem;
}

.picture-ac9d {
    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) {
    .picture-ac9d {
        flex-direction: row;
    }
}

.iron-30e4 {
    text-align: center;
}

@media (min-width: 768px) {
    .iron-30e4 {
        text-align: left;
    }
}

.iron-30e4 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.row-green-8d19 {
    font-size: 0.75rem !important;
}

.black_8aa8 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.dynamic-4b33 {
    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);
    }
}

.row_f78d {
    animation: fadeInUp 0.6s ease-out;
}

.focus-cold-a5a0 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.short_a87e {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .short_a87e {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.tabs_6c41 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tabs_6c41 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.action-e073 {
    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);
}

.action-e073 .narrow-ade8 {
    font-size: 1.25rem;
}

.action-e073 .advanced-4196 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.surface_6c02 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .surface_6c02 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.narrow-b5dc {
    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);
}

.narrow-b5dc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.item_brown_3b69 {
    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);
}

.fresh-3ed4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.logo_upper_0462 {
    color: var(--text-gray);
    line-height: 1.6;
}

.first-84ab {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery_464d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.gallery_464d .accent-c5b0 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.gallery_464d .footer-current-decd {
    color: var(--text-gray);
    line-height: 1.6;
}

.tooltip_current_698d {
    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);
}

.caption_plasma_5870 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.caption_plasma_5870 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.caption_plasma_5870 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.selected_988d {
    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);
}

.old-cd3d {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tiny_8b77 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tiny_8b77 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.tiny_8b77 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);
}

.tiny_8b77 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.tiny_8b77 input::placeholder {
    color: var(--text-muted);
}

.tertiary_blue_edea {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.last_2466 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.last_2466 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.tertiary_6ded {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.tertiary_6ded:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.gold-5125 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gold-5125 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.nav-4219 {
    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);
}

.nav-4219 .slider-tall-d235 {
    font-size: 1.25rem;
}

.nav-4219 .slider_d14f {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.in-4395 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.title-1a57 {
    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);
}

.title-1a57 .narrow-ade8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.title-1a57 .accent-c5b0 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.title-1a57 .footer-current-decd {
    color: var(--text-gray);
    line-height: 1.6;
}

.panel-127a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.west_29ba {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.west_29ba .stale_5099 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.west_29ba .nav-easy-2077 {
    color: var(--text-gray);
    line-height: 1.6;
}

.sort-df7e {
    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);
}

.glass_0ee0 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .glass_0ee0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.element_8b01 {
    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);
}

.element_8b01:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.breadcrumb_full_73e1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.icon-bottom-6dc5 {
    flex: 1;
}

.icon_edd5 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.widget_fef7 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.highlight_4125 {
    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);
}

.highlight_4125:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.media-a108 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .media-a108 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gold-66ff {
    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);
}

.gold-66ff:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.main_inner_7a66 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tall_44ec {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.content_simple_c450 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.element-cb24 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.picture_orange_e6db {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.backdrop-fast-be9c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.warm_921d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.warm_921d .static-4366 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.warm_921d .panel-670f {
    color: var(--text-gray);
    line-height: 1.6;
}

.status-active-1bd5 {
    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);
}

.outer-57fd {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.popup_5b91 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.popup_5b91 .narrow-ade8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.popup_5b91 .accent-c5b0 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.popup_5b91 .footer-current-decd {
    color: var(--text-gray);
    line-height: 1.6;
}

.border-d914 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .border-d914 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.aside-f618 {
    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);
}

.aside-f618:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.tooltip_action_51c2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tooltip_action_51c2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.menu_selected_10d2 {
    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);
}

.menu_selected_10d2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.simple-f029 {
    font-size: 2rem;
    flex-shrink: 0;
}

.block_30d8 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.thick-3e50 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.summary_6647 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.wrapper-30b7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.description-hard-1f6a {
    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);
}

.description-hard-1f6a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.sidebar_e924 {
    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);
}

.hot-53cd {
    flex: 1;
}

.wood_5a79 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.button-9180 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.rough_29c3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.table-173c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.shade_5fe5 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shade_5fe5 .stale_5099 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.shade_5fe5 .nav-easy-2077 {
    color: var(--text-gray);
    line-height: 1.6;
}

.form-cool-7ffe {
    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);
}

.grid-south-6016 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .grid-south-6016 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.backdrop-d1d0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .backdrop-d1d0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.green_d718 {
    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);
}

.green_d718:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.progress-current-e9de {
    font-size: 2rem;
    flex-shrink: 0;
}

.link_ab3b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.fast-0e22 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.texture-7465 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.button_cfd3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.alert_9939 {
    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);
}

.article_bottom_2344 {
    font-size: 2rem;
    flex-shrink: 0;
}

.simple_4a84 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.nav_6cc5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.outer-57fd {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.popup_5b91 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.popup_5b91 .accent-c5b0 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.popup_5b91 .footer-current-decd {
    color: var(--text-gray);
    line-height: 1.6;
}

.shadow-inner-5203 {
    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);
}

.notification_9a32 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .notification_9a32 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .notification_9a32 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.chip_hovered_41d0 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.chip_hovered_41d0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hovered-d835 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.orange-8e35 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.disabled_f4e8 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.dropdown-acc3 {
    padding: 1.5rem;
}

.container-6889 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.notice-8776 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notice-8776 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;
}

.notice-8776 li:last-child {
    border-bottom: none;
}

.notice-8776 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.element-061a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .element-061a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.main_easy_d7db {
    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);
}

.main_easy_d7db:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.dynamic_c8c4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.card_orange_4f2e {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.module-7577 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.prev_5dd5 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.container_75e6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sidebar_under_bc2b {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.footer_9f32 {
    font-size: 2rem;
    flex-shrink: 0;
}

.disabled_a427 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.slider-in-d5e4 {
    color: var(--text-gray);
    line-height: 1.6;
}

.light-de7c {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.aside_dim_344b {
    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);
}

.purple-bab6 {
    text-align: center;
}

.modal-28bc {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.filter-huge-690f {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.tabs_da69 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tooltip_a2dc {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tooltip_a2dc .accent-c5b0 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tooltip_a2dc .footer-current-decd {
    color: var(--text-gray);
    line-height: 1.6;
}

.middle_8737 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .middle_8737 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .middle_8737 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.green_c4b3 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.green_c4b3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.text-upper-4a81 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.basic_9ce1 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.accent-c5b0 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.pressed-806b {
    padding: 1.5rem;
}

.footer-current-decd {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.stale-de07 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stale-de07 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;
}

.stale-de07 li:last-child {
    border-bottom: none;
}

.stale-de07 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.text-5886 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.message_static_aa0b {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.message_static_aa0b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.module_hot_a33d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.purple_162b {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.item_brown_3b69 {
    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;
}

.fresh-3ed4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.logo_upper_0462 {
    color: var(--text-gray);
    line-height: 1.6;
}

.summary-0876 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.card_cb33 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.simple-7dfe {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.highlight_5841 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.component_copper_7370 {
    display: flex;
    gap: 1rem;
}

.component_copper_7370 .picture_7c4f {
    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;
}

.notice_a25a {
    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);
}

.feature_warm_0ee5 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.right-1015 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.right-1015 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;
}

.right-1015 li:last-child {
    border-bottom: none;
}

.right-1015 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.status-146a {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .status-146a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .status-146a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.panel-9fea {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.panel-9fea:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.frame-brown-f2a1 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.article_28ba {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.static-4366 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.item_mini_b9d9 {
    font-size: 1rem;
}

.description_e7f5 {
    padding: 1.5rem;
}

.panel-670f {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.border_rough_fb82 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.border_rough_fb82 .purple-bab6 {
    text-align: center;
}

.border_rough_fb82 .filter-huge-690f {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.border_rough_fb82 .component_white_1e81 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.brown-57fc {
    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);
}

.brown-57fc:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.white-a592 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .white-a592 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.content_d584 {
    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);
}

.content_d584:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.filter-top-f852 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.column_663a {
    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);
}

.purple-2b18 {
    font-size: 2rem;
    flex-shrink: 0;
}

.card-dim-227c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.easy-ebee {
    color: var(--text-gray);
    line-height: 1.6;
}

.wide-48b9 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.upper-a509 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.narrow_6de4 {
    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);
}

.element-steel-33a0 {
    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;
}

.element-steel-33a0.frame_feed {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.element-steel-33a0.fluid_bf17 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.element-steel-33a0.aside_over_ac27 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.element-steel-33a0.info-f0d3 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.element-steel-33a0.list_b501 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.pattern-4c1e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.accent_small_bf24 {
    color: var(--text-gray);
    line-height: 1.6;
}

.picture-purple-7a5d {
    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);
}

.last-664d {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.panel-127a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.panel-127a 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;
}

.panel-127a li:last-child {
    border-bottom: none;
}

.panel-127a li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.solid_6fe2 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .solid_6fe2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .solid_6fe2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stale-64ab {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.stale-64ab:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.stale-64ab.filter_b9d4 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .stale-64ab.filter_b9d4 {
        grid-column: span 3;
    }
}

.secondary_4c12 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.stale-64ab.filter_b9d4 .secondary_4c12 {
    background: rgba(6, 182, 212, 0.1);
}

.border-yellow-ee8f {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.left-2294 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.stale-64ab.filter_b9d4 .left-2294 {
    color: var(--info-color);
}

.backdrop_0869 {
    padding: 1.5rem;
    text-align: center;
}

.copper-db58 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.stale-64ab.filter_b9d4 .copper-db58 {
    color: var(--info-color);
}

.pro-cc5e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.hover_bright_d57a {
    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 */
.red-842b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .red-842b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-74fe {
    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);
}

.feature-74fe:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.south_92f3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.title-1a57 {
    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);
}

.slider-tall-d235 {
    font-size: 2rem;
    flex-shrink: 0;
}

.medium-1a0b {
    flex: 1;
}

.dirty-0a8a {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.button_silver_3751 {
    color: var(--text-gray);
    line-height: 1.6;
}

.label-up-ffc9 {
    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);
}

.purple_8105 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.cool-bf32 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.dynamic-4b33 {
    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);
}

.plasma-8956 {
  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);
}

.plasma-8956 .purple-bab6 {
    text-align: center;
}

.plasma-8956 .modal-28bc {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.plasma-8956 .filter-huge-690f {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.main-1e3f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.module-419f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.small_75d4 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.link-70f1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.popup-narrow-3abc {
    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);
}

.video_744e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.picture_basic_0e89 {
    color: var(--text-gray);
    line-height: 1.6;
}

.link_deee {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .link_deee {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .link_deee {
        grid-template-columns: repeat(3, 1fr);
    }
}

.outline-47d3 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.outline-47d3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.shadow_79b3 {
    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);
}

.column_3075 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.picture_slow_3c87 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.card-39dc {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-39dc.hard_e170 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.card-39dc.carousel_f9a1 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.card-39dc.header-71aa {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.header-north-b141 {
    padding: 1.5rem;
    text-align: center;
}

.notice_0dd5 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tooltip_old_f328 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tooltip_old_f328 .accent-9714 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.progress-5dbd {
    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);
}

.progress-5dbd:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.grid_west_9443 {
  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);
}

.overlay_orange_4d69 {
    text-align: center;
}

.overlay_orange_4d69 .modal-28bc {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.overlay_orange_4d69 .filter-huge-690f {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.avatar-pressed-6ed8 { text-align: center; }
.slow-6f86 { text-align: left; }
.bright-6328 { text-align: right; }

.tooltip-selected-7640 { margin-bottom: 0; }
.under-65fa { margin-bottom: 0.5rem; }
.highlight_west_8935 { margin-bottom: 1rem; }
.current_7eea { margin-bottom: 1.5rem; }
.east_ec15 { margin-bottom: 2rem; }

.slider-f106 { margin-top: 0; }
.feature-e664 { margin-top: 0.5rem; }
.small-0219 { margin-top: 1rem; }
.border-mini-acec { margin-top: 1.5rem; }
.surface-silver-74a5 { margin-top: 2rem; }

.fn-hidden-ac25 { display: none; }
.fn-visible-ac25 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .detail-9644 {
        padding: 6rem 0 3rem;
    }
    
    .hard_c7d5 {
        text-align: center;
    }
    
    .tabs-8138 {
        text-align: center;
    }
    
    .status_narrow_4853 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .summary_yellow_97f8,
    .layout_current_6eb0,
    .texture_c7de,
    .dark_6bef {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .detail-9644 {
        background: none;
    }
}

/* Providers Section */
.element-yellow-c349 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.shade_red_5a10 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shade_red_5a10 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .shade_red_5a10 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.filter_57fd {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.filter_57fd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.under_39f6 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.summary_e679 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.action_8f93 {
    list-style: none;
    padding: 0;
}

.action_8f93 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.action_8f93 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.label-4464 {
    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);
}

.label-4464 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.description_under_a322 {
    padding: var(--section-padding);
}

.center_a9c0 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .center_a9c0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fixed_a153 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.fixed_a153:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.gas_3fb0 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.alert_upper_f292 {
    display: flex;
    flex-direction: column;
}

.notice-a34c {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.nav-180d {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.chip_dfa2 {
    color: var(--accent-color);
}

.description_6acc {
    font-size: 1.25rem;
}

.purple-c28b {
    margin-bottom: 1rem;
}

.purple-c28b p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.article-5162 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.notification-short-75ba {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.purple-bab6 {
    text-align: center;
}

.modal-28bc {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.filter-huge-690f {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.content_clean_d9e2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.content_1e3d {
    margin: 2rem 0;
}

.content-ad07 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.content-ad07 .narrow-ade8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.aside-active-a0dc {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.feature_9393 {
    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;
}

.feature_9393:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.static-3259 {
    font-size: 2rem;
}

.wrapper_adc1 {
    display: flex;
    flex-direction: column;
}

.badge_8b54 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.new_b0d7 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.container-e812 {
    padding: var(--section-padding);
}

.notification-9aa3 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .notification-9aa3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .notification-9aa3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.complex-bdfc {
    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);
}

.complex-bdfc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.complex-bdfc .modal-28bc {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.complex-bdfc .filter-huge-690f {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.complex-bdfc .old-d4b6 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.header_tiny_3a69 {
    margin-top: 4rem;
}

.component-copper-5009 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.popup_0e31 {
    overflow-x: auto;
}

.mask-086d {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.mask-086d thead {
    background: var(--accent-color);
}

.mask-086d th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.mask-086d td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.mask-086d tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.mask-086d tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.column-top-83a1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.south_8fbe {
    max-width: 900px;
    margin: 0 auto;
}

.block_6831 {
    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);
}

.block_6831:hover {
    border-color: var(--accent-color);
}

.prev_6d38 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.prev_6d38 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.logo_mini_865a {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.block_6831.fn-active-ac25 .logo_mini_865a {
    transform: rotate(45deg);
}

.avatar-46d8 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.block_6831.fn-active-ac25 .avatar-46d8 {
    max-height: 1000px;
}

.avatar-46d8 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.panel-e5e4 {
    padding: var(--section-padding);
}

.caption_plasma_5870 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.accent_d3f6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.footer-rough-3c69 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .footer-rough-3c69 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.avatar_top_a9dd {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.black_5423 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.preview-brown-cdde {
    font-size: 2rem;
}

.active-advanced-67f2 {
    color: var(--text-white);
    margin: 0;
}

.sort-fb79 {
    list-style: none;
    padding: 0;
}

.sort-fb79 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sort-fb79 li:last-child {
    border-bottom: none;
}

.summary-5ddd {
    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);
}

.summary-5ddd p {
    color: var(--success-color);
    margin: 0;
}

.carousel-upper-be14 {
    margin-top: 3rem;
}

.feature_warm_0ee5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.primary_9ebb {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .primary_9ebb {
        grid-template-columns: repeat(2, 1fr);
    }
}

.full_df2a {
    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);
}

.clean-cc14 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.full_df2a p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.menu-256f {
    padding: var(--section-padding);
}

.image-4bc4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .image-4bc4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.soft-e19c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.soft-e19c:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.breadcrumb_d273 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.north-9f8b {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.column-1fb4 {
    flex: 1;
}

.alert_huge_5988 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.footer_upper_96ee {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.thick_72cf {
    color: var(--text-gray);
    line-height: 1.6;
}

.hard-b91c {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hard-b91c:last-child {
    border-bottom: none;
}

/* Comparison Section */
.brown_cb91 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.sidebar-silver-855f {
    padding: var(--section-padding);
}

.breadcrumb-184a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.widget-dark-2c65 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .widget-dark-2c65 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tabs_wood_1c1e {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.status_9e3d, .north-f06b, .selected_a776 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.selected_a776 {
    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 */
.down-470e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.photo-fast-f530 {
    margin: 2rem 0;
}

.fixed_4b74 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.north-ac2c {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.message-glass-4cb1 {
    list-style: none;
    padding: 0;
}

.message-glass-4cb1 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;
}

.message-glass-4cb1 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.message-glass-4cb1 li:last-child {
    border-bottom: none;
}

.element-fixed-6bdb {
    text-align: center;
    margin-top: 2rem;
}

.center-7fb5 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.tag-rough-0e72 {
    padding: var(--section-padding);
}

.focus_glass_1d78 {
    margin: 2rem 0;
}

.banner_top_a244 {
    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) {
    .banner_top_a244 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.banner_top_a244:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.avatar_bottom_0872 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.progress-basic-acf7 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.wrapper-iron-9dbd {
    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;
}

.preview-c1ce {
    flex: 1;
}

.cold-5136 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.dynamic_4032 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.sidebar_new_045e {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.white_b8c1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .white_b8c1 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.carousel-20a1 {
    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);
}

.carousel-20a1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.carousel-20a1 .modal-28bc {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.carousel-20a1 .filter-huge-690f {
    color: var(--text-gray);
    font-size: 1rem;
}

.cold-9c5b {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.last_69c9 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.last_69c9 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.mask-b655 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .mask-b655 {
        grid-template-columns: 1fr 1fr;
    }
}

.shadow_large_6aa7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.rough_8ba3 {
    margin-bottom: 1.5rem;
}

.rough_8ba3 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.rough_8ba3 input,
.rough_8ba3 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;
}

.rough_8ba3 input:focus,
.rough_8ba3 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.gallery_94e0 {
    width: 100%;
    margin-top: 1rem;
}

.gas_bbaa {
    display: flex;
    align-items: center;
}

.short-3f8d {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.link-blue-72d8 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.surface-2699 {
    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;
}

.white_4e7e {
    color: var(--text-gray);
}

.module-mini-affb {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.module-white-c7b6 {
    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);
}

.module-white-c7b6 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.border_4d1c {
    margin-top: 3rem;
}

.old_658c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.notification-soft-f992 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.static_c6ee {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.link_focused_4511 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.link_focused_4511:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.wrapper-cef1 {
    padding: var(--section-padding);
}

.copper_b2d9 {
    margin: 2rem 0;
}

.aside_white_0558 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.highlight_b81c {
    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;
}

.highlight_b81c:hover, .highlight_b81c.fn-active-ac25 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.dropdown-solid-0b48 {
    display: none;
}

.dropdown-solid-0b48.fn-active-ac25 {
    display: block;
}

.lite-a4ea {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.label_bfda {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.pro_fa94 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.pro_fa94 ul {
    list-style: none;
    padding: 0;
}

.pro_fa94 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.pro_fa94 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.badge-next-8bc6 {
    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 */
.plasma-7f76 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.cool-02d9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.logo_5c71 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.outer_48fa {
    color: var(--accent-color);
    margin: 0;
}

.description-warm-6906 {
    display: flex;
    gap: 1.5rem;
}

.element_lite_cbf1 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.new_9034 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.overlay_07a8 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.overlay_07a8.text_6494 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.overlay_07a8.module_9734 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.overlay_07a8.content_light_b18f {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.image-lite-ca40 {
    margin-top: 2rem;
}

.accent_in_4b79 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.soft-bd3b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .soft-bd3b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dropdown_green_c5e9 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.row_ab64 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.heading-e19a {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.south-8869 {
    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 */
.warm_0ee1 {
    padding: var(--section-padding);
}

.description_d849 {
    margin: 2rem 0;
}

.layout_893d {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.feature-48b3 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.footer-smooth-8510 {
    list-style: none;
    padding: 0;
}

.footer-smooth-8510 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
    padding-left: 1.5rem;
    position: relative;
}

.footer-smooth-8510 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.footer-smooth-8510 li:last-child {
    border-bottom: none;
}

.in_1d34 {
    margin: 2rem 0;
}

.column_north_e584 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.avatar-short-2778 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .avatar-short-2778 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.popup_warm_62f5 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hover_c296 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.outline-narrow-6ffe {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.upper_978f {
    margin-top: 2rem;
}

.icon_edd5 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.badge_pressed_0068 {
    list-style: none;
    padding: 0;
}

.warm-c07c {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.warm-c07c a {
    color: var(--accent-color);
    text-decoration: none;
}

.warm-c07c a:hover {
    text-decoration: underline;
}

.shade_prev_1d76 {
    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-4416 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.glass-3d92 {
    margin: 2rem 0;
}

.overlay_stone_bebc {
    margin-bottom: 3rem;
}

.overlay_stone_bebc .north-ac2c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.lower_8080 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.layout_d780 {
    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);
}

.layout_d780:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.old_bb37 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .old_bb37 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sort_9033 {
    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 */
.shade_lite_6058 {
    padding: var(--section-padding);
}

.preview_e0c3 {
    margin: 2rem 0;
}

.pressed-b925 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.form_ddc9 {
    overflow-x: auto;
    margin: 2rem 0;
}

.content-b83a {
    background: rgba(6, 182, 212, 0.1) !important;
}

.main-fb58 {
    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;
}

.link_29ce {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.east-d2b4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .east-d2b4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.button_4a11 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.button_4a11 .narrow-ade8 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.button_4a11 .accent-c5b0 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.footer_prev_e0d8 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.green-1309 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.mask_fixed_fa1c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .mask_fixed_fa1c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.copper-33ae {
    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;
}

.copper-33ae:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.slow-fb57 {
    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);
}

.primary-brown-6059 {
    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;
}

.tiny-77bb {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.accent_blue_212a {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.main_last_c779 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.paragraph_a79a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.solid-2337 {
    color: var(--text-white);
    font-weight: 600;
}

.progress-7610 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.bronze-e2e4 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bronze-e2e4 .picture_7c4f {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.caption_bottom_51bb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .caption_bottom_51bb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.module_center_45b2 {
    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);
}

.module_center_45b2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.module_center_45b2 .modal-28bc {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.module_center_45b2 .filter-huge-690f {
    color: var(--text-gray);
    font-size: 1rem;
}

.accordion-70cc {
    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);
}

.south_fc1d {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.south_fc1d strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.button_cfd3 {
    margin: 2rem 0;
}

.alert_9939 {
    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);
}

.alert_9939:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.article_bottom_2344 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.message_0345 {
    flex: 1;
}

.simple_4a84 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.nav_6cc5 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.outer-57fd {
    margin: 2rem 0;
}

.popup_5b91 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.popup_5b91 .accent-c5b0 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.popup_5b91 .footer-current-decd {
    color: var(--text-gray);
    margin: 0;
}

.shadow-inner-5203 {
    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);
}

.shadow-inner-5203 .hot_b8c5 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.footer_prev_e0d8 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.sidebar_e924 {
    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;
}

.hot-53cd {
    flex: 1;
}

.button-9180 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.rough_29c3 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.item_brown_3b69 {
    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;
}

.dirty-b2a0 {
    flex: 1;
}

.fresh-3ed4 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.logo_upper_0462 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.simple-7dfe {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.highlight_5841 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.component_copper_7370 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.component_copper_7370 .picture_7c4f {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.notice_a25a {
    margin-top: 2rem;
}

.notice_a25a .feature_warm_0ee5 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.cool_d337 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.aside_dim_344b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .aside_dim_344b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.aside_dim_344b .purple-bab6 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tabs_da69 {
    margin: 2rem 0;
}

.tooltip_a2dc {
    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 */
.modal_active_f805 {
    padding: var(--section-padding);
}

.pressed-806b {
    margin-top: 1rem;
}

.stale-de07 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.stale-de07 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.stale-de07 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.outer_eca9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.surface-5569 {
    margin: 2rem 0;
}

.badge-light-b470 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.lower_abdd {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.notification_76c5 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.glass-c761 {
    margin: 2rem 0;
}

.search-first-a761 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.search-first-a761 .north-ac2c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.up-458a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .up-458a {
        grid-template-columns: repeat(2, 1fr);
    }
}

.panel-glass-950e {
    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);
}

.section_c9ca {
    color: var(--text-white);
    font-weight: 600;
}

.wide_74b0 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.shadow_9a58 {
    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);
}

.shadow_9a58 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.media_bbaa {
    padding: var(--section-padding);
}

.row_right_8d8b {
    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;
}

.row_right_8d8b:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.medium_e2f9 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.medium_e2f9 .clean-cc14 {
    font-size: 2rem;
    flex-shrink: 0;
}

.medium_e2f9 .accent-mini-fbff {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.banner-0c2b {
    flex: 1;
}

.yellow-741d {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.info-tall-6a0c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-tall-6a0c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.info-tall-6a0c li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.texture-huge-af98 {
    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);
}

.texture-huge-af98 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.texture-huge-af98 strong {
    color: var(--warning-color);
}

/* Slots Section */
.status-21aa {
    padding: var(--section-padding);
}

.picture_orange_e6db {
    margin: 2rem 0;
}

/* Table Games Section */
.banner-8e18 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.backdrop-fast-be9c {
    margin: 2rem 0;
}

.warm_921d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.warm_921d:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.warm_921d .static-4366 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.warm_921d .panel-670f {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.status-active-1bd5 {
    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);
}

.status-active-1bd5 .hot_b8c5 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.preview-simple-fe47 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.input-8706 {
    margin: 2rem 0;
}

.outline-old-9701 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.paragraph-last-6081 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.form_wide_a90c {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.outer_bd8d {
    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);
}

.outer_bd8d:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.outer_bd8d.fn-active-ac25 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.fast-b669 {
    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);
}

.top-c12d {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.top-c12d strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.caption-f824 {
    padding: var(--section-padding);
}

.caption_a3d5 {
    margin: 2rem 0;
}

.fixed-287e {
    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);
}

.fixed-287e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .fixed-287e {
        flex-direction: column;
        align-items: flex-start;
    }
}

.panel_fixed_b3dc {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.disabled_advanced_2da3 {
    flex: 1;
}

.heading-complex-26a7 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.badge_selected_6bcb {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.pattern_c75e {
    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;
}

.chip_warm_88af {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.notification_ae8e {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.in-9c60 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.last-c21c {
    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;
}

.last-c21c:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.filter_f607 {
    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);
}

.heading_smooth_48f6 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.heading_smooth_48f6 strong {
    color: var(--accent-color);
}

/* New Games Section */
.black-e3be {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.disabled-da95 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .disabled-da95 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .disabled-da95 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.box_20d1 {
    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;
}

.box_20d1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.simple_74ef {
    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;
}

.footer_green_e122 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.shade_bottom_20fe {
    font-size: 2rem;
}

.alert_full_8742 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.active_5bb8 {
    flex: 1;
}

.breadcrumb-e367 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.popup-short-d143 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.shade-out-66c8 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.header-8d4b {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.notification-91da {
    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;
}

.pattern-over-4443 {
    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;
}

.pattern-over-4443:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.grid_e0c9 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dynamic-f829 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.cold_6b62 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .cold_6b62 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pagination-upper-e930 {
    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);
}

.box_9fbc {
    color: var(--text-white);
    font-weight: 600;
}

.large_3b19 {
    color: var(--accent-color);
    font-weight: 600;
}

.grid_brown_ee16 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.grid_brown_ee16 strong {
    color: var(--accent-color);
}

/* Security Section */
.text_fed7 {
    padding: var(--section-padding);
}

/* Benefits Section */
.paper-4678 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.texture-stone-746e {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.tall-f2f3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.outline_7fe6 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.thick_21a9 {
    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) {
    .thick_21a9 {
        flex-direction: column;
        gap: 1rem;
    }
}

.thick_21a9:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.thick_21a9 .item_brown_3b69 {
    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;
}

.thick_21a9 .dirty-b2a0 {
    flex: 1;
}

.thick_21a9 .fresh-3ed4 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.thick_21a9 .logo_upper_0462 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.gradient-02b6 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gradient-02b6 .dirty-0a8a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.gradient-02b6 .in-4395 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gradient-02b6 .in-4395 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.gradient-02b6 .in-4395 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.section-rough-3ef2 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.tertiary-52c2 {
    padding: var(--section-padding);
}

.outer-d3be {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .outer-d3be {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery_f53e {
    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);
}

.gallery_f53e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.gallery_f53e .fluid-a584 {
    font-size: 2rem;
    flex-shrink: 0;
}

.gallery_f53e .pattern_focused_7910 {
    flex: 1;
}

.gallery_f53e .stale_5099 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.gallery_f53e .hard-bed1 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.heading_dim_9fce {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.heading_dim_9fce .icon-current-8a22 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.heading_dim_9fce .column_c767 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.heading_dim_9fce .column_c767 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);
}

.heading_dim_9fce .column_c767 li:last-child {
    border-bottom: none;
}

.heading_dim_9fce .column_c767 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;
}

.heading_dim_9fce .column_c767 li strong {
    color: var(--text-white);
}

.form_e38e {
    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);
}

.form_e38e p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.form_e38e strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.primary-f5aa {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.block_red_89ac {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .block_red_89ac {
        grid-template-columns: repeat(2, 1fr);
    }
}

.left_2cbb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.left_2cbb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.accent_51f6 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient-3d96 {
    font-size: 2rem;
}

.surface_silver_607b {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.caption-5750 {
    flex: 1;
}

.media-old-6e31 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.media-old-6e31 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.media-old-6e31 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.filter-soft-0f02 {
    margin-top: 3rem;
}

.layout_893d {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.feature-48b3 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-smooth-8510 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-smooth-8510 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.footer-smooth-8510 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.footer-smooth-8510 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.modal-014b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.component-ee81 {
    margin: 2rem 0;
}

.accordion_up_9562 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.accordion_up_9562 .north-ac2c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.media-6c7d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .media-6c7d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.media-bronze-f357 {
    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);
}

.media-bronze-f357:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.basic_1c12 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.label-da54 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.column_steel_7184 {
    padding: var(--section-padding);
}

.element_hard_3264 {
    margin: 2rem 0;
}

.feature-steel-5cd2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .feature-steel-5cd2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .feature-steel-5cd2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wrapper_hard_de66 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.wrapper_hard_de66:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.green-7c66 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.wrapper-action-2e9f {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.dropdown_orange_8361 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.dropdown_orange_8361.under-6469 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.steel-0fa4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.image-adac {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.element-bottom-d466 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.old_335a {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.red_59b0 {
    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);
}

.red_59b0 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.red_59b0 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.tag_b3c9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.gold-a643 {
    margin: 2rem 0;
}

.message_1efb {
    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) {
    .message_1efb {
        flex-direction: column;
        gap: 1rem;
    }
}

.message_1efb:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.message_1efb::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);
}

.active-focused-3830 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.breadcrumb_large_e2a5 {
    flex: 1;
}

.description_yellow_a050 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.tag_hard_720a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tag_hard_720a li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.table_blue_c22a {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.bottom-3c78 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.thick-16bc {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .thick-16bc {
        grid-template-columns: repeat(3, 1fr);
    }
}

.container_bottom_c29e {
    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);
}

.new-28fe {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.carousel_dark_2fc6 {
    flex: 1;
}

.full-6f99 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.element-new-4220 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.east_64f6 {
    margin-top: 2rem;
    text-align: center;
}

.logo_5a3d {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.logo_5a3d strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.white-a592 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .white-a592 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.content_d584 {
    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);
}

.content_d584:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.content_d584 .dynamic_c8c4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.content_d584 .card_orange_4f2e {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.content_d584 .module-7577 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.content_d584 .prev_5dd5 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.old_afc3 {
    padding: var(--section-padding);
}

.column_663a .prev-bfa3 {
    flex: 1;
}

/* Promo Calendar Section */
.red_e667 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.silver_4d84 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .silver_4d84 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.narrow-c004 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.large_85c1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.stone_468b {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.container_5697 {
    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);
}

.widget-e734 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.stale-fe01 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.widget_b3f9 {
    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);
}

.widget_b3f9 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.widget_b3f9 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.paragraph-cold-aaac {
    padding: var(--section-padding);
}

.footer_active_a71c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .footer_active_a71c {
        grid-template-columns: repeat(2, 1fr);
    }
}

.main_silver_b499 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.panel-fresh-4b16 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.outline_d28f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.outline_d28f li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.container_ae79 {
    margin-top: 3rem;
}

.container_ae79 .layout_893d {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.container_ae79 .feature-48b3 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.container_ae79 .footer-smooth-8510 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.container_ae79 .footer-smooth-8510 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.container_ae79 .footer-smooth-8510 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.container_ae79 .footer-smooth-8510 li strong {
    color: var(--warning-color);
}

.mask_95fe {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.mask_95fe strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.over_6987 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.summary-bottom-8374 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .summary-bottom-8374 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pattern_8322 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pattern_8322 .north-ac2c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.hero-3679 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.caption-east-f4a2 {
    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);
}

.caption-east-f4a2:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.photo-simple-e38b {
    font-size: 2rem;
    flex-shrink: 0;
}

.gallery-22f1 {
    flex: 1;
}

.blue_98df {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.easy_c808 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.thumbnail-yellow-4937 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.title_67d7 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.tall-f27b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .tall-f27b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.old_71a4 {
    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);
}

.old_71a4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.banner-short-b650 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.upper_c4c4 {
    color: var(--text-gray);
    font-size: 1rem;
}

.last_69c9 {
    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);
}

.search-a1d8 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.search-a1d8 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.label-02fb { 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; }
.north-3100, .chip_red_aec7 { max-width:100%; height:auto; }

.secondary_north_0fe6, .image-outer-20b3, .top-714e { white-space:normal; }

.hard_c7d5,
.tabs-8138,
.red-842b,
.white-a592,
.outer-57fd,
.link_deee {
  flex-wrap:wrap;
}

[class*="grid"],
.tall-f27b,
.feature-steel-5cd2,
.bronze-039e {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.detail-9644 img,
.tabs-8138 img,
.fresh_5b8a img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.outline_brown_e7c5, .shade_last_d5a5,
.gas_e00e, .component_rough_7547 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.popup_0e31 { width:100%; overflow-x:auto; }
.popup_0e31 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.shade_red_5a10 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .shade_red_5a10 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.filter_57fd {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.notification-9aa3,
.input_bottom_6079,
.button_fc34,
.fresh-782e,
.white_b8c1,
.tall-f27b,
.feature-steel-5cd2,
.bronze-039e,
.grid_west_9443,
.caption_a3d5,
.shade_red_5a10 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .notification-9aa3,
  .input_bottom_6079,
  .button_fc34,
  .fresh-782e,
  .white_b8c1,
  .tall-f27b,
  .feature-steel-5cd2,
  .bronze-039e,
  .grid_west_9443,
  .caption_a3d5,
  .shade_red_5a10 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.complex-bdfc,
.carousel-20a1,
.old_71a4,
.smooth_9876,
.wrapper_hard_de66,
.overlay_orange_4d69,
.fixed-287e,
.filter_57fd {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.picture_8d37,
.button-2e98,
.advanced_978f {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.picture_8d37 > *,
.button-2e98 > *,
.advanced_978f > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 11c2 */
.shadow-element-k8 {
  padding: 0.4rem;
  font-size: 12px;
  line-height: 1.1;
}
