/* {$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;
}

.avatar-5ddf {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.paper_4d43 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .paper_4d43 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .paper_4d43 {
        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 */
.aside-east-21d3 {
    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);
}

.stone_2101 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .stone_2101 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .panel_out_c687 {
        grid-column: 1;
    }
    
    .picture_e793 {
        grid-column: 2;
    }
    
    .image-iron-40ed {
        grid-column: 3;
    }
}

.panel_out_c687 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.panel_out_c687:hover img {
    transform: scale(1.05);
}

/* Navigation */
.button_d856 {
    display: none;
}

@media (min-width: 1024px) {
    .button_d856 {
        display: block;
    }
}

/* Grouped Navigation */
.hover-white-8aeb {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.action-bf1d {
    position: relative;
}

.preview-clean-1d1f {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.action-bf1d .feature_8080 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.feature_8080 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.background-d831 {
    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;
}

.background-d831:hover,
.background-d831.fn-active-2515 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.light-b3df {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .light-b3df {
        display: flex;
    }
}

/* Mobile Register Button */
.picture_e793 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .picture_e793 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.purple_f94b {
    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;
}

.purple_f94b::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 */
.image-iron-40ed {
    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) {
    .image-iron-40ed {
        display: none;
    }
}

.image-iron-40ed span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.image-iron-40ed.fn-active-2515 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.image-iron-40ed.fn-active-2515 span:nth-child(2) {
    opacity: 0;
}

.image-iron-40ed.fn-active-2515 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.sort-black-12e7 {
    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;
}

.sort-black-12e7.fn-active-2515 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.notice-2b07 {
    overflow: hidden;
}

.input-liquid-d464 {
    list-style: none;
    padding: 0.75rem 0;
}

.wrapper-1bb7 {
    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;
}

.wrapper-1bb7:hover,
.wrapper-1bb7.fn-active-2515 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.wrapper-1bb7.alert-2986 {
    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;
}

.wrapper-1bb7.alert-2986::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 */
.panel_short_124f {
    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;
}

.photo-7b38 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.photo-7b38:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.table_dim_fa6f {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.table_dim_fa6f:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.accordion-middle-6f82 {
    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;
}

.accordion-middle-6f82:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.fixed_4eef {
    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;
}

.header-70a6 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.header-70a6:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.panel-c360 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.panel-c360:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.sidebar_in_d36a {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.sidebar_in_d36a: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);
}

.warm-445b {
    font-size: 1em;
    font-weight: 700;
}

.shadow-clean-2b98 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.tabs_6396 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.tabs_6396::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;
}

.header_722f {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .header_722f {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.nav_f82d {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.input-ed8a {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.inner_544b {
    margin-bottom: 2rem;
}

.nav_bd74 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .nav_bd74 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pattern_9587 {
    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);
}

.shade-6280 {
    font-size: 1.5rem;
}

.column_lower_c3aa {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.caption-purple-3077 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fresh_9845 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.fresh_9845:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.aside-dynamic-1eb9 {
    text-align: center;
    margin-bottom: 3rem;
}

.advanced_a5a3 {
    margin-bottom: 1rem;
}

.border_ab41 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.basic_290e {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .basic_290e {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .basic_290e.link_9dd5 {
        direction: rtl;
    }
    
    .basic_290e.link_9dd5 > * {
        direction: ltr;
    }
}

.south-848f {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.south-848f:first-child {
    margin-top: 0;
}

.tabs-eba7 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.mask_medium_d10e {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.mask_medium_d10e:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.medium_d568 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .medium_d568 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.slow-61c1 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.surface_6838 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.photo_simple_a6f5 {
    list-style: none;
}

.photo_simple_a6f5 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.photo_simple_a6f5 li:last-child {
    border-bottom: none;
}

/* Games Features */
.info-copper-6e33 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.last-ffcc {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.detail-f132 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hard_9fed {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.paragraph_fresh_df1a {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.link_light_ac46 {
    margin: 2rem 0;
}

.plasma-2638 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.dropdown-67c2 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.heading-selected-9890 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.bronze-d986 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.mini-5afb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .mini-5afb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.video-6bb3 {
    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);
}

.video-6bb3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.media-top-50a5 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.hovered-5c10 {
    font-size: 1.5rem;
}

.frame_bebc {
    color: var(--accent-color);
    margin: 0;
}

.tall-f9f5 {
    list-style: none;
}

.tall-f9f5 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.tall-f9f5 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.picture_d9e9 {
    margin: 2rem 0;
}

.full_95e2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.highlight_soft_6a40 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .highlight_soft_6a40 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accent-dc7f {
    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);
}

.wood-a670 {
    font-size: 1.25rem;
}

.button_042a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.block-1437,
.table-yellow-9a46 {
    text-align: center;
    margin: 2rem 0;
}

.texture_4e91,
.caption_action_1e21 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.plasma-3641 {
    margin: 2rem 0;
    text-align: center;
}

.tall_ecdf {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tall_ecdf::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;
}

.frame_f8ab {
    position: relative;
    z-index: 1;
}

.gallery-75e2 {
    margin-bottom: 1rem;
}

.texture-inner-642c {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.texture_4078 {
    margin-bottom: 3rem;
}

.static_12c7 {
    margin-top: 3rem;
}

.texture_static_fec8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .texture_static_fec8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.texture_static_fec8 .pattern_9587 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.basic_9101 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.selected_ec13 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.menu_c369 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.gradient_bf98 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .gradient_bf98 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gradient_bf98 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.prev-d345 {
    margin-bottom: 1rem;
}

.stone_5a76 img {
    margin-bottom: 1rem;
}

.prev_b1ff {
    color: var(--text-gray);
    line-height: 1.6;
}

.chip-7ae1 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.stone_31fd {
    list-style: none;
}

.stone_31fd li {
    margin-bottom: 0.5rem;
}

.stone_31fd a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.stone_31fd a:hover {
    color: var(--accent-color);
}

.gallery_4fa4 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.content_fluid_6340 {
    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);
}

.content_fluid_6340:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.sidebar-motion-ac30 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.sidebar-motion-ac30 p {
    margin-bottom: 0.25rem;
}

.modal-9b84 {
    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) {
    .modal-9b84 {
        flex-direction: row;
    }
}

.alert-7eaf {
    text-align: center;
}

@media (min-width: 768px) {
    .alert-7eaf {
        text-align: left;
    }
}

.alert-7eaf p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.light_b5fb {
    font-size: 0.75rem !important;
}

.frame-4887 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.picture_in_82d4 {
    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);
    }
}

.gradient-over-c00a {
    animation: fadeInUp 0.6s ease-out;
}

.texture_5c1c {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.text_hard_b750 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .text_hard_b750 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.mask_beb1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .mask_beb1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.popup_753d {
    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);
}

.popup_753d .detail-f132 {
    font-size: 1.25rem;
}

.popup_753d .mini_e060 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.smooth_52ca {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .smooth_52ca {
        grid-template-columns: repeat(3, 1fr);
    }
}

.highlight-complex-2c64 {
    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);
}

.highlight-complex-2c64:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.chip-dynamic-3576 {
    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);
}

.up_1a27 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.outer-e758 {
    color: var(--text-gray);
    line-height: 1.6;
}

.grid_60bd {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.huge_731d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.huge_731d .hard_9fed {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.huge_731d .paragraph_fresh_df1a {
    color: var(--text-gray);
    line-height: 1.6;
}

.aside_inner_97da {
    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);
}

.highlight-stale-0330 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.highlight-stale-0330 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.highlight-stale-0330 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.tabs-77a2 {
    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);
}

.status-d52d {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.outline_0cbf {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.outline_0cbf label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.outline_0cbf 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);
}

.outline_0cbf input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.outline_0cbf input::placeholder {
    color: var(--text-muted);
}

.easy-3d72 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.surface_7ecf {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.surface_7ecf input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.modal-blue-dd55 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.modal-blue-dd55:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.highlight_soft_6a40 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .highlight_soft_6a40 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accent-dc7f {
    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);
}

.accent-dc7f .wood-a670 {
    font-size: 1.25rem;
}

.accent-dc7f .button_042a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.gallery_60f9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.disabled_bec9 {
    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);
}

.disabled_bec9 .detail-f132 {
    font-size: 2rem;
    flex-shrink: 0;
}

.disabled_bec9 .hard_9fed {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.disabled_bec9 .paragraph_fresh_df1a {
    color: var(--text-gray);
    line-height: 1.6;
}

.background-fb01 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dropdown_5d17 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.dropdown_5d17 .clean_543d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.dropdown_5d17 .column_blue_fd86 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hover_7dab {
    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);
}

.pink-c773 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .pink-c773 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.left_9f75 {
    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);
}

.left_9f75:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.white_8ed5 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.paragraph-dc2f {
    flex: 1;
}

.brown_ece0 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.accent_copper_4b9a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tag_95a9 {
    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);
}

.tag_95a9:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.tooltip-723e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tooltip-723e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hidden_b7d1 {
    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);
}

.hidden_b7d1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pressed_cb2d {
    font-size: 2rem;
    flex-shrink: 0;
}

.tooltip-0068 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dropdown_lite_ebf8 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.message-wood-d039 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.tag_be01 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.chip-6a45 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.banner_red_1029 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.banner_red_1029 .popup-8410 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.banner_red_1029 .fast-6b27 {
    color: var(--text-gray);
    line-height: 1.6;
}

.south_dfd7 {
    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);
}

.purple-5ac8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.cold_e581 {
    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);
}

.cold_e581 .detail-f132 {
    font-size: 2rem;
    flex-shrink: 0;
}

.cold_e581 .hard_9fed {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.cold_e581 .paragraph_fresh_df1a {
    color: var(--text-gray);
    line-height: 1.6;
}

.media_warm_a59a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .media_warm_a59a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.border-7bec {
    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);
}

.border-7bec:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.title-light-cbb8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .title-light-cbb8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.advanced-8e96 {
    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);
}

.advanced-8e96:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.white_b644 {
    font-size: 2rem;
    flex-shrink: 0;
}

.notification_left_157f {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dropdown-67c2 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.blue_a998 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.slow-8f93 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sidebar-ace2 {
    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);
}

.sidebar-ace2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.shade_stale_435d {
    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);
}

.frame_upper_4a74 {
    flex: 1;
}

.input-active-a4b9 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.description-gold-4699 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.cool-1359 {
    color: var(--text-gray);
    line-height: 1.6;
}

.status_d8c1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.shadow-ad15 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shadow-ad15 .clean_543d {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.shadow-ad15 .column_blue_fd86 {
    color: var(--text-gray);
    line-height: 1.6;
}

.table-yellow-9a46 {
    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);
}

.footer-selected-92cf {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .footer-selected-92cf {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.column-copper-6021 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .column-copper-6021 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature_8014 {
    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_8014:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.column_new_7ddf {
    font-size: 2rem;
    flex-shrink: 0;
}

.north_8fed {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.border_warm_ec76 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.banner-next-ea8f {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.article-5c0f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.filter-328c {
    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);
}

.cold-30a4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.element-middle-4ae3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.main_b438 {
    color: var(--text-gray);
    line-height: 1.6;
}

.purple-5ac8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.cold_e581 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.cold_e581 .hard_9fed {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.cold_e581 .paragraph_fresh_df1a {
    color: var(--text-gray);
    line-height: 1.6;
}

.image-af55 {
    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);
}

.main_prev_28c2 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .main_prev_28c2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .main_prev_28c2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.action-8453 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.action-8453:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.component_stone_20bf {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.stale_9097 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.chip_out_cd9b {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.gallery_static_070b {
    padding: 1.5rem;
}

.bottom-b142 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.light-e314 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.light-e314 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;
}

.light-e314 li:last-child {
    border-bottom: none;
}

.light-e314 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.orange_35ce {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .orange_35ce {
        grid-template-columns: repeat(4, 1fr);
    }
}

.row_e388 {
    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);
}

.row_e388:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.grid_9c80 {
    font-size: 2rem;
    flex-shrink: 0;
}

.wrapper-active-cfaa {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.gallery-42ae {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.gold-a020 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.primary_2b23 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.light_7e8e {
    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);
}

.notification_a0fb {
    font-size: 2rem;
    flex-shrink: 0;
}

.item-676b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.avatar_b236 {
    color: var(--text-gray);
    line-height: 1.6;
}

.search-f1fe {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.west-9f94 {
    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);
}

.thumbnail-black-9f3c {
    text-align: center;
}

.fresh-1806 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.cold_e0d0 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.large_bb7e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.footer-756d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.footer-756d .hard_9fed {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.footer-756d .paragraph_fresh_df1a {
    color: var(--text-gray);
    line-height: 1.6;
}

.disabled-3686 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .disabled-3686 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .disabled-3686 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.overlay_6d84 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.overlay_6d84:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.search_east_7d2a {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.tooltip-7d63 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.hard_9fed {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.picture_c8e6 {
    padding: 1.5rem;
}

.paragraph_fresh_df1a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.box_lower_4802 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.box_lower_4802 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;
}

.box_lower_4802 li:last-child {
    border-bottom: none;
}

.box_lower_4802 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.narrow-13d0 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.label-f202 {
    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);
}

.label-f202:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.layout-fluid-a769 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.modal_eac4 {
    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);
}

.chip-dynamic-3576 {
    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;
}

.up_1a27 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.outer-e758 {
    color: var(--text-gray);
    line-height: 1.6;
}

.pink_9638 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.info-fast-5cde {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.panel_silver_b0db {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.icon-in-7b05 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.hero_61f6 {
    display: flex;
    gap: 1rem;
}

.hero_61f6 .detail_2efc {
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent-color);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
}

.dropdown_d7b1 {
    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);
}

.picture-steel-2ed4 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.column_cee3 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.column_cee3 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;
}

.column_cee3 li:last-child {
    border-bottom: none;
}

.column_cee3 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.orange-0ca2 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .orange-0ca2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .orange-0ca2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.button_middle_c96b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.button_middle_c96b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.stale_ae33 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.list-wood-fb2a {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.popup-8410 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.nav_af41 {
    font-size: 1rem;
}

.rough_7387 {
    padding: 1.5rem;
}

.fast-6b27 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.tag-pressed-1db6 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.tag-pressed-1db6 .thumbnail-black-9f3c {
    text-align: center;
}

.tag-pressed-1db6 .cold_e0d0 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.tag-pressed-1db6 .fast-66f7 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.text_0f5d {
    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);
}

.text_0f5d:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.up_c23d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .up_c23d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.blue-4736 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.blue-4736:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.main-plasma-c1dd {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.bottom_ad2f {
    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);
}

.selected_8d31 {
    font-size: 2rem;
    flex-shrink: 0;
}

.sort-edab {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hard_b21f {
    color: var(--text-gray);
    line-height: 1.6;
}

.nav_brown_cef1 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.status_white_3197 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-warm-ce88 {
    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);
}

.gallery-e136 {
    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;
}

.gallery-e136.row_0600 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.gallery-e136.fixed_ea1a {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.gallery-e136.wood_d42c {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.gallery-e136.brown_ea56 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.gallery-e136.menu_5bbc {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.footer-stale-2a49 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.detail-smooth-32bb {
    color: var(--text-gray);
    line-height: 1.6;
}

.video_bottom_82f9 {
    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);
}

.frame_light_712d {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.background-fb01 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.background-fb01 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;
}

.background-fb01 li:last-child {
    border-bottom: none;
}

.background-fb01 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.upper_d084 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .upper_d084 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .upper_d084 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.lite-d07d {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.lite-d07d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.lite-d07d.header_e660 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .lite-d07d.header_e660 {
        grid-column: span 3;
    }
}

.motion_ee9d {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.lite-d07d.header_e660 .motion_ee9d {
    background: rgba(6, 182, 212, 0.1);
}

.module-fixed-1a16 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.feature-bronze-39c9 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.lite-d07d.header_e660 .feature-bronze-39c9 {
    color: var(--info-color);
}

.heading_a9d6 {
    padding: 1.5rem;
    text-align: center;
}

.button_outer_b374 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.lite-d07d.header_e660 .button_outer_b374 {
    color: var(--info-color);
}

.notification-bbea {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.dim-6b3e {
    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 */
.media_static_e435 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .media_static_e435 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.info_e29d {
    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);
}

.info_e29d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.label_b544 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.disabled_bec9 {
    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);
}

.wood-a670 {
    font-size: 2rem;
    flex-shrink: 0;
}

.link-3c2f {
    flex: 1;
}

.full_95e2 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.notice_purple_aaa8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.caption-3c16 {
    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);
}

.logo_8dab {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.button-61dc {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.picture_in_82d4 {
    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);
}

.large_4476 {
  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);
}

.large_4476 .thumbnail-black-9f3c {
    text-align: center;
}

.large_4476 .fresh-1806 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.large_4476 .cold_e0d0 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.primary_liquid_328f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.filter-west-2fb2 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shadow_9345 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.status-silver-5ee9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.carousel-static-a37f {
    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);
}

.badge_huge_3513 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.photo-4b38 {
    color: var(--text-gray);
    line-height: 1.6;
}

.complex_c84c {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .complex_c84c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .complex_c84c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.texture_pink_e391 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.texture_pink_e391:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.label-c590 {
    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);
}

.east_8929 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.next_9f66 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.chip_9466 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chip_9466.white_d152 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.chip_9466.grid_07f1 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.chip_9466.focus-9bc2 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.element_a330 {
    padding: 1.5rem;
    text-align: center;
}

.info_brown_6b0e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.advanced-8467 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.advanced-8467 .outer_50fa {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.disabled-tiny-be10 {
    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);
}

.disabled-tiny-be10:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.frame_steel_ce8b {
  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);
}

.row-simple-4f3e {
    text-align: center;
}

.row-simple-4f3e .fresh-1806 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.row-simple-4f3e .cold_e0d0 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.soft_2b05 { text-align: center; }
.content_a549 { text-align: left; }
.message_right_d7b4 { text-align: right; }

.section_610c { margin-bottom: 0; }
.hard-b4a1 { margin-bottom: 0.5rem; }
.logo_mini_28d6 { margin-bottom: 1rem; }
.center_7a2c { margin-bottom: 1.5rem; }
.dropdown-8709 { margin-bottom: 2rem; }

.small_975c { margin-top: 0; }
.dynamic_864f { margin-top: 0.5rem; }
.picture-purple-753b { margin-top: 1rem; }
.warm-8021 { margin-top: 1.5rem; }
.notification_3242 { margin-top: 2rem; }

.fn-hidden-2515 { display: none; }
.fn-visible-2515 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .tabs_6396 {
        padding: 6rem 0 3rem;
    }
    
    .header_722f {
        text-align: center;
    }
    
    .basic_290e {
        text-align: center;
    }
    
    .nav_bd74 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .aside-east-21d3,
    .sort-black-12e7,
    .tall_ecdf,
    .menu_c369 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .tabs_6396 {
        background: none;
    }
}

/* Providers Section */
.medium_08f9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.simple-d2f5 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .simple-d2f5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .simple-d2f5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hero-clean-38c3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.hero-clean-38c3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.shadow_hovered_412d {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.top-ff0d {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.lower-12a4 {
    list-style: none;
    padding: 0;
}

.lower-12a4 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.lower-12a4 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.hard-5a1e {
    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);
}

.hard-5a1e p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.disabled-e33c {
    padding: var(--section-padding);
}

.alert-down-3980 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .alert-down-3980 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-new-462b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.footer-new-462b:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.heading_active_7870 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.sort-a003 {
    display: flex;
    flex-direction: column;
}

.input-c9de {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.paper-8df6 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.link_35ec {
    color: var(--accent-color);
}

.button_warm_db22 {
    font-size: 1.25rem;
}

.black_bf12 {
    margin-bottom: 1rem;
}

.black_bf12 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.modal_57d7 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.medium-259b {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.thumbnail-black-9f3c {
    text-align: center;
}

.fresh-1806 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.cold_e0d0 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.first_6542 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.content-stone-670c {
    margin: 2rem 0;
}

.static-9fcb {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.static-9fcb .detail-f132 {
    font-size: 2rem;
    flex-shrink: 0;
}

.aside_ed35 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.plasma_ab49 {
    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;
}

.plasma_ab49:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.surface_c9c4 {
    font-size: 2rem;
}

.component_b2e5 {
    display: flex;
    flex-direction: column;
}

.huge_5cb6 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.motion-e232 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.item-84d0 {
    padding: var(--section-padding);
}

.box_aa9c {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .box_aa9c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .box_aa9c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.red-a8e7 {
    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);
}

.red-a8e7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.red-a8e7 .fresh-1806 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.red-a8e7 .cold_e0d0 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.red-a8e7 .shadow_mini_5d4d {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.red-70ec {
    margin-top: 4rem;
}

.widget_cold_ceb7 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.media-3569 {
    overflow-x: auto;
}

.static_d44c {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.static_d44c thead {
    background: var(--accent-color);
}

.static_d44c th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.static_d44c td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.static_d44c tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.static_d44c tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.layout-0fe7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.outer_e7f1 {
    max-width: 900px;
    margin: 0 auto;
}

.sort-paper-ca80 {
    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);
}

.sort-paper-ca80:hover {
    border-color: var(--accent-color);
}

.surface_8288 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.surface_8288 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.prev_9339 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.sort-paper-ca80.fn-active-2515 .prev_9339 {
    transform: rotate(45deg);
}

.nav-steel-1370 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.sort-paper-ca80.fn-active-2515 .nav-steel-1370 {
    max-height: 1000px;
}

.nav-steel-1370 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.photo-36f3 {
    padding: var(--section-padding);
}

.highlight-stale-0330 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.dropdown-1ed5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tertiary_paper_3c98 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tertiary_paper_3c98 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.action_a40e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.north_d675 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pro-4d78 {
    font-size: 2rem;
}

.tertiary_first_ccbb {
    color: var(--text-white);
    margin: 0;
}

.list_d4ba {
    list-style: none;
    padding: 0;
}

.list_d4ba li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.list_d4ba li:last-child {
    border-bottom: none;
}

.message-abcf {
    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);
}

.message-abcf p {
    color: var(--success-color);
    margin: 0;
}

.widget_static_0522 {
    margin-top: 3rem;
}

.picture-steel-2ed4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.message_67a3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .message_67a3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mini_b403 {
    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);
}

.dim-9145 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.mini_b403 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.caption_stale_f3b4 {
    padding: var(--section-padding);
}

.panel-stone-6df1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .panel-stone-6df1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.preview_liquid_182f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.preview_liquid_182f:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.fresh_65b4 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.wide_463e {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.icon-last-1805 {
    flex: 1;
}

.tertiary_c749 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.progress_8793 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.focus-9a76 {
    color: var(--text-gray);
    line-height: 1.6;
}

.up_a497 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.up_a497:last-child {
    border-bottom: none;
}

/* Comparison Section */
.wrapper-b934 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.tag_c7f6 {
    padding: var(--section-padding);
}

.secondary_6765 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.mini-897b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .mini-897b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.table-complex-e6a2 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.alert_9e86, .orange-00f6, .background_smooth_f1f8 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.background_smooth_f1f8 {
    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 */
.frame_d1a4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.block_7514 {
    margin: 2rem 0;
}

.feature_aa10 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.frame_mini_6551 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.widget-4024 {
    list-style: none;
    padding: 0;
}

.widget-4024 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;
}

.widget-4024 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.widget-4024 li:last-child {
    border-bottom: none;
}

.border_a543 {
    text-align: center;
    margin-top: 2rem;
}

.section-b46b {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.background-advanced-7d17 {
    padding: var(--section-padding);
}

.button_9279 {
    margin: 2rem 0;
}

.hidden-purple-cc72 {
    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) {
    .hidden-purple-cc72 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.hidden-purple-cc72:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.soft-f34d {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.status-2fb8 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.surface_d890 {
    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;
}

.mini-0882 {
    flex: 1;
}

.prev_8c81 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.popup_4a9c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.advanced_95e7 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.outer_7d5c {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .outer_7d5c {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.active-4e01 {
    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);
}

.active-4e01:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.active-4e01 .fresh-1806 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.active-4e01 .cold_e0d0 {
    color: var(--text-gray);
    font-size: 1rem;
}

.green_fb1a {
    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);
}

.modal_mini_23ae {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.modal_mini_23ae strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.description-59a3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .description-59a3 {
        grid-template-columns: 1fr 1fr;
    }
}

.panel-d685 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.east-f365 {
    margin-bottom: 1.5rem;
}

.east-f365 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.east-f365 input,
.east-f365 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;
}

.east-f365 input:focus,
.east-f365 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.background-4a11 {
    width: 100%;
    margin-top: 1rem;
}

.slider_c3f3 {
    display: flex;
    align-items: center;
}

.pattern-f50c {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.footer_8bde {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.dropdown-small-730e {
    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;
}

.title_28c9 {
    color: var(--text-gray);
}

.chip_liquid_ea0a {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.rough_2dfc {
    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);
}

.rough_2dfc p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.tag-50f7 {
    margin-top: 3rem;
}

.full-b24b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.top-7840 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.prev-8da4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.input-medium-ffdf {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.input-medium-ffdf:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.short_fa97 {
    padding: var(--section-padding);
}

.hover_1d07 {
    margin: 2rem 0;
}

.hard-417d {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.shadow-09a5 {
    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;
}

.shadow-09a5:hover, .shadow-09a5.fn-active-2515 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.static_b99b {
    display: none;
}

.static_b99b.fn-active-2515 {
    display: block;
}

.cold_9822 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gas_60bc {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.tag_83ca h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.tag_83ca ul {
    list-style: none;
    padding: 0;
}

.tag_83ca ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.tag_83ca ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.purple-88ca {
    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 */
.description-c111 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.basic_2114 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.selected_bfc8 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.label-active-0ebd {
    color: var(--accent-color);
    margin: 0;
}

.accent_dark_f1ad {
    display: flex;
    gap: 1.5rem;
}

.stone-907b {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.message_slow_1cc2 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.media-7ab1 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.media-7ab1.table-rough-aef2 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.media-7ab1.tall-f2f1 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.media-7ab1.picture_hot_65cd {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.accent-9586 {
    margin-top: 2rem;
}

.nav_0e58 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.basic-dc8b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .basic-dc8b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.avatar-96f5 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.steel_fffd {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.active-212c {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.filter_c7a9 {
    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 */
.short_0445 {
    padding: var(--section-padding);
}

.element_motion_62db {
    margin: 2rem 0;
}

.column_stale_b465 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.image-2ca0 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.liquid_8802 {
    list-style: none;
    padding: 0;
}

.liquid_8802 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;
}

.liquid_8802 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.liquid_8802 li:last-child {
    border-bottom: none;
}

.pro_6cba {
    margin: 2rem 0;
}

.search-blue-2c06 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.chip_purple_0fc2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .chip_purple_0fc2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.module_hard_e80c {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.content-plasma-208e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.up-9fb4 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.status-black-2740 {
    margin-top: 2rem;
}

.brown_ece0 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.component-19b4 {
    list-style: none;
    padding: 0;
}

.texture-cool-dad6 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.texture-cool-dad6 a {
    color: var(--accent-color);
    text-decoration: none;
}

.texture-cool-dad6 a:hover {
    text-decoration: underline;
}

.gradient-97da {
    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 */
.caption_c173 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.left-6190 {
    margin: 2rem 0;
}

.active-528f {
    margin-bottom: 3rem;
}

.active-528f .frame_mini_6551 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.breadcrumb-center-2ecd {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.primary-7c56 {
    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);
}

.primary-7c56:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.tag_d83a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .tag_d83a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.up-027e {
    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 */
.row_de28 {
    padding: var(--section-padding);
}

.video-61dd {
    margin: 2rem 0;
}

.rough-09d6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.panel_iron_8f72 {
    overflow-x: auto;
    margin: 2rem 0;
}

.hot_013d {
    background: rgba(6, 182, 212, 0.1) !important;
}

.disabled_right_7b17 {
    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;
}

.input_e883 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.breadcrumb-advanced-2774 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .breadcrumb-advanced-2774 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.menu_cold_45dc {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.menu_cold_45dc .detail-f132 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.menu_cold_45dc .hard_9fed {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.shadow-over-1f02 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.caption-c504 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.search_ccce {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .search_ccce {
        grid-template-columns: repeat(3, 1fr);
    }
}

.main-0e98 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.main-0e98:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.pink_e1ad {
    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);
}

.link-13f2 {
    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;
}

.pagination-5148 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.filter-c4e2 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.disabled-3265 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.soft_3c9b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pagination-abe8 {
    color: var(--text-white);
    font-weight: 600;
}

.gallery-top-7a40 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.huge-4e23 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.huge-4e23 .detail_2efc {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.gold-291d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .gold-291d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.shadow_ca5d {
    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);
}

.shadow_ca5d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.shadow_ca5d .fresh-1806 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.shadow_ca5d .cold_e0d0 {
    color: var(--text-gray);
    font-size: 1rem;
}

.grid-east-2f82 {
    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);
}

.out_71e2 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.out_71e2 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.article-5c0f {
    margin: 2rem 0;
}

.filter-328c {
    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);
}

.filter-328c:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.cold-30a4 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.label-b375 {
    flex: 1;
}

.element-middle-4ae3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.main_b438 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.purple-5ac8 {
    margin: 2rem 0;
}

.cold_e581 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.cold_e581 .hard_9fed {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.cold_e581 .paragraph_fresh_df1a {
    color: var(--text-gray);
    margin: 0;
}

.image-af55 {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.image-af55 .texture_4e91 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.shadow-over-1f02 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.shade_stale_435d {
    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;
}

.frame_upper_4a74 {
    flex: 1;
}

.description-gold-4699 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.cool-1359 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.chip-dynamic-3576 {
    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;
}

.search-e33c {
    flex: 1;
}

.up_1a27 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.outer-e758 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.panel_silver_b0db {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.icon-in-7b05 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.hero_61f6 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.hero_61f6 .detail_2efc {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.dropdown_d7b1 {
    margin-top: 2rem;
}

.dropdown_d7b1 .picture-steel-2ed4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.feature_bc2f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.west-9f94 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .west-9f94 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.west-9f94 .thumbnail-black-9f3c {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.large_bb7e {
    margin: 2rem 0;
}

.footer-756d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

/* Game Features Section */
.silver_dc43 {
    padding: var(--section-padding);
}

.picture_c8e6 {
    margin-top: 1rem;
}

.box_lower_4802 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.box_lower_4802 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.box_lower_4802 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.west-0265 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.nav-9c24 {
    margin: 2rem 0;
}

.text_bronze_98a9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.advanced_39a9 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.accent-gas-f714 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.paper_540b {
    margin: 2rem 0;
}

.focused_9d61 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.focused_9d61 .frame_mini_6551 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.filter_61ea {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .filter_61ea {
        grid-template-columns: repeat(2, 1fr);
    }
}

.short-2835 {
    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);
}

.picture-over-1e3e {
    color: var(--text-white);
    font-weight: 600;
}

.hard_13cd {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.carousel_9b0b {
    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);
}

.carousel_9b0b p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.button-e59f {
    padding: var(--section-padding);
}

.west_24f7 {
    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;
}

.west_24f7:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.alert_1fa6 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.alert_1fa6 .dim-9145 {
    font-size: 2rem;
    flex-shrink: 0;
}

.alert_1fa6 .summary-out-9aec {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.badge_6985 {
    flex: 1;
}

.breadcrumb-iron-93d6 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.under-cf50 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.under-cf50 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.under-cf50 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.slow_387b {
    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);
}

.slow_387b p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.slow_387b strong {
    color: var(--warning-color);
}

/* Slots Section */
.tooltip-a7c5 {
    padding: var(--section-padding);
}

.tag_be01 {
    margin: 2rem 0;
}

/* Table Games Section */
.menu_539d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.chip-6a45 {
    margin: 2rem 0;
}

.banner_red_1029 {
    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);
}

.banner_red_1029:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.banner_red_1029 .popup-8410 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.banner_red_1029 .fast-6b27 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.south_dfd7 {
    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);
}

.south_dfd7 .texture_4e91 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.info_dd8f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.fast-61bd {
    margin: 2rem 0;
}

.notice-orange-2857 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.huge_cc1d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.heading_dd15 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.liquid-fd24 {
    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);
}

.liquid-fd24:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.liquid-fd24.fn-active-2515 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.wrapper-6b27 {
    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);
}

.fixed_dda5 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.fixed_dda5 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.thumbnail_98da {
    padding: var(--section-padding);
}

.preview_full_e1a6 {
    margin: 2rem 0;
}

.dropdown-full-e609 {
    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);
}

.dropdown-full-e609:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .dropdown-full-e609 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.hover-27c3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.huge_a1b8 {
    flex: 1;
}

.stone-e38c {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.input-b2e1 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.hovered-2139 {
    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;
}

.cold_3e7e {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.list_d006 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.mask_0c13 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.advanced_c5e6 {
    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;
}

.advanced_c5e6:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.section_solid_c612 {
    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);
}

.info_d39d {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.info_d39d strong {
    color: var(--accent-color);
}

/* New Games Section */
.gradient_current_c8b5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.status_a2e9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .status_a2e9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .status_a2e9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.list_d0e5 {
    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;
}

.list_d0e5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.dropdown-5ca3 {
    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;
}

.action_4355 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.pagination_iron_f15a {
    font-size: 2rem;
}

.row-a2fa {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.box-08f3 {
    flex: 1;
}

.easy_beb0 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.wrapper_iron_8356 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.shade_6dcf {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.filter_2828 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.primary_ccb1 {
    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;
}

.layout-f8ec {
    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;
}

.layout-f8ec:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.fixed-87b2 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.detail_lower_f09a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.wrapper-a807 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .wrapper-a807 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.medium-84bd {
    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);
}

.pagination-white-3e11 {
    color: var(--text-white);
    font-weight: 600;
}

.tabs_fa63 {
    color: var(--accent-color);
    font-weight: 600;
}

.wrapper_tiny_3a52 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.wrapper_tiny_3a52 strong {
    color: var(--accent-color);
}

/* Security Section */
.focus_pro_9c55 {
    padding: var(--section-padding);
}

/* Benefits Section */
.basic_6d35 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.card-0b9d {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.label_solid_20d5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.secondary-20d5 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.hovered_583d {
    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) {
    .hovered_583d {
        flex-direction: column;
        gap: 1rem;
    }
}

.hovered_583d:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.hovered_583d .chip-dynamic-3576 {
    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;
}

.hovered_583d .search-e33c {
    flex: 1;
}

.hovered_583d .up_1a27 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.hovered_583d .outer-e758 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.hovered-13d4 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hovered-13d4 .full_95e2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hovered-13d4 .gallery_60f9 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hovered-13d4 .gallery_60f9 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.hovered-13d4 .gallery_60f9 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.aside-0610 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.item-c1de {
    padding: var(--section-padding);
}

.clean-03ea {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .clean-03ea {
        grid-template-columns: repeat(3, 1fr);
    }
}

.overlay-c5a8 {
    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);
}

.overlay-c5a8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.overlay-c5a8 .item_upper_0813 {
    font-size: 2rem;
    flex-shrink: 0;
}

.overlay-c5a8 .tooltip-37ef {
    flex: 1;
}

.overlay-c5a8 .clean_543d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.overlay-c5a8 .mask_focused_13d0 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.south_3942 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.south_3942 .menu-3389 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.south_3942 .purple_4f67 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.south_3942 .purple_4f67 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);
}

.south_3942 .purple_4f67 li:last-child {
    border-bottom: none;
}

.south_3942 .purple_4f67 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;
}

.south_3942 .purple_4f67 li strong {
    color: var(--text-white);
}

.silver_b8ae {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.silver_b8ae p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.silver_b8ae strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.aside-ac93 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.text-c39f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .text-c39f {
        grid-template-columns: repeat(2, 1fr);
    }
}

.picture-pink-5710 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.picture-pink-5710:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.hovered_e0c6 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-upper-b757 {
    font-size: 2rem;
}

.section-5a3c {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.tabs-f068 {
    flex: 1;
}

.texture_medium_3bb1 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.texture_medium_3bb1 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.texture_medium_3bb1 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.item-72a2 {
    margin-top: 3rem;
}

.column_stale_b465 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.image-2ca0 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.liquid_8802 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.liquid_8802 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.liquid_8802 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.liquid_8802 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.paragraph_last_b625 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tabs_f47c {
    margin: 2rem 0;
}

.avatar-full-5c93 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.avatar-full-5c93 .frame_mini_6551 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.gas-9ef8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .gas-9ef8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.element-9458 {
    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);
}

.element-9458:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.solid-514c {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.out-63b8 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.component-bottom-29a8 {
    padding: var(--section-padding);
}

.progress_651b {
    margin: 2rem 0;
}

.black_0bae {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .black_0bae {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .black_0bae {
        grid-template-columns: repeat(3, 1fr);
    }
}

.row-pressed-c637 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.row-pressed-c637:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.purple-03ac {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.summary_easy_ac2c {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.black_6fad {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.black_6fad.panel_8415 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.active_steel_8bf7 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.label-last-a8a8 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.component_stale_142c {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dark_fc96 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.container-cold-d978 {
    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);
}

.container-cold-d978 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.container-cold-d978 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.hot-ebd8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.purple_9ef7 {
    margin: 2rem 0;
}

.warm_8867 {
    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) {
    .warm_8867 {
        flex-direction: column;
        gap: 1rem;
    }
}

.warm_8867:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.warm_8867::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);
}

.hidden_gold_7c4b {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.search_1290 {
    flex: 1;
}

.picture-current-c24e {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.breadcrumb_b36e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb_b36e li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.slow-63d9 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.article_left_b284 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.button_95d3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .button_95d3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.status_inner_faa1 {
    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);
}

.video-pro-578d {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.status-inner-f500 {
    flex: 1;
}

.clean-b40f {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.old-5bf1 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.tag_9ec7 {
    margin-top: 2rem;
    text-align: center;
}

.green_a733 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.green_a733 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.up_c23d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .up_c23d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.blue-4736 {
    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);
}

.blue-4736:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.blue-4736 .grid_9c80 {
    font-size: 2rem;
    flex-shrink: 0;
}

.blue-4736 .wrapper-active-cfaa {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.blue-4736 .gallery-42ae {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.blue-4736 .gold-a020 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.search-dark-2550 {
    padding: var(--section-padding);
}

.bottom_ad2f .video-small-c4d5 {
    flex: 1;
}

/* Promo Calendar Section */
.basic-01e4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.accent-3024 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accent-3024 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.active_1a38 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.chip_4d0e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.widget_846b {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.layout-b1de {
    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);
}

.element_76b1 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.warm_55a8 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.logo-fresh-1c95 {
    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);
}

.logo-fresh-1c95 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.logo-fresh-1c95 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.header-stone-501e {
    padding: var(--section-padding);
}

.overlay-up-44f8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .overlay-up-44f8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.caption_fb23 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tooltip-large-1f76 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.heading-paper-30ab {
    list-style: none;
    padding: 0;
    margin: 0;
}

.heading-paper-30ab li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.icon-pink-8d43 {
    margin-top: 3rem;
}

.icon-pink-8d43 .column_stale_b465 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.icon-pink-8d43 .image-2ca0 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.icon-pink-8d43 .liquid_8802 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.icon-pink-8d43 .liquid_8802 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.icon-pink-8d43 .liquid_8802 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.icon-pink-8d43 .liquid_8802 li strong {
    color: var(--warning-color);
}

.texture_old_bf1f {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.texture_old_bf1f strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.logo_south_7564 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.cold-88cb {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .cold-88cb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.status_e95f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.status_e95f .frame_mini_6551 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.element-smooth-c3ca {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.menu_narrow_a1c6 {
    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);
}

.menu_narrow_a1c6:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.aside_first_9873 {
    font-size: 2rem;
    flex-shrink: 0;
}

.nav_006f {
    flex: 1;
}

.copper-476a {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.button_selected_5ff8 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.new_5a87 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.footer-right-879b {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.search-stale-c22d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .search-stale-c22d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.link_warm_1a83 {
    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);
}

.link_warm_1a83:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.summary-1ec3 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.article-de22 {
    color: var(--text-gray);
    font-size: 1rem;
}

.modal_mini_23ae {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.media_f2bd {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.media_f2bd strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.paper_4d43 { 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; }
.fresh_9845, .mask_medium_d10e { max-width:100%; height:auto; }

.panel_short_124f, .accordion-middle-6f82, .fixed_4eef { white-space:normal; }

.header_722f,
.basic_290e,
.media_static_e435,
.up_c23d,
.purple-5ac8,
.complex_c84c {
  flex-wrap:wrap;
}

[class*="grid"],
.search-stale-c22d,
.black_0bae,
.texture_static_fec8 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.tabs_6396 img,
.basic_290e img,
.caption-purple-3077 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.nav_f82d, .input-ed8a,
.advanced_a5a3, .border_ab41 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.media-3569 { width:100%; overflow-x:auto; }
.media-3569 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.simple-d2f5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .simple-d2f5 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.hero-clean-38c3 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.box_aa9c,
.outline-c4df,
.media-48be,
.component_dirty_a475,
.outer_7d5c,
.search-stale-c22d,
.black_0bae,
.texture_static_fec8,
.frame_steel_ce8b,
.preview_full_e1a6,
.simple-d2f5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .box_aa9c,
  .outline-c4df,
  .media-48be,
  .component_dirty_a475,
  .outer_7d5c,
  .search-stale-c22d,
  .black_0bae,
  .texture_static_fec8,
  .frame_steel_ce8b,
  .preview_full_e1a6,
  .simple-d2f5 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.red-a8e7,
.active-4e01,
.link_warm_1a83,
.pattern_9587,
.row-pressed-c637,
.row-simple-4f3e,
.dropdown-full-e609,
.hero-clean-38c3 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.red-0b36,
.container-e7e4,
.gold_f8d5 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.red-0b36 > *,
.container-e7e4 > *,
.gold_f8d5 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 63cf */
.shadow-element-m3 {
  padding: 0.5rem;
  font-size: 13px;
  line-height: 1.1;
}
