/* {$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;
}

.layout-68a7 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.module-black-5ab2 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .module-black-5ab2 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .module-black-5ab2 {
        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 */
.progress-clean-e065 {
    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);
}

.rough-a14d {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .rough-a14d {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .video_hard_7b44 {
        grid-column: 1;
    }
    
    .summary_full_a0e8 {
        grid-column: 2;
    }
    
    .middle-14e9 {
        grid-column: 3;
    }
}

.video_hard_7b44 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.video_hard_7b44:hover img {
    transform: scale(1.05);
}

/* Navigation */
.caption_2bc4 {
    display: none;
}

@media (min-width: 1024px) {
    .caption_2bc4 {
        display: block;
    }
}

/* Grouped Navigation */
.bronze-fc5a {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.search_liquid_432e {
    position: relative;
}

.gas_a57a {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.search_liquid_432e .accordion_7e0c {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.accordion_7e0c {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.grid-929c {
    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;
}

.grid-929c:hover,
.grid-929c.fn-active-7d37 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.active-9356 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .active-9356 {
        display: flex;
    }
}

/* Mobile Register Button */
.summary_full_a0e8 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .summary_full_a0e8 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.banner_small_b856 {
    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;
}

.banner_small_b856::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 */
.middle-14e9 {
    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) {
    .middle-14e9 {
        display: none;
    }
}

.middle-14e9 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.middle-14e9.fn-active-7d37 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.middle-14e9.fn-active-7d37 span:nth-child(2) {
    opacity: 0;
}

.middle-14e9.fn-active-7d37 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.caption_9005 {
    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;
}

.caption_9005.fn-active-7d37 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.link-red-bd02 {
    overflow: hidden;
}

.widget-top-48c0 {
    list-style: none;
    padding: 0.75rem 0;
}

.banner-eb42 {
    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;
}

.banner-eb42:hover,
.banner-eb42.fn-active-7d37 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.banner-eb42.module_c830 {
    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;
}

.banner-eb42.module_c830::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 */
.upper-25e6 {
    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;
}

.pressed_f09b {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.pressed_f09b:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.surface_slow_121b {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.surface_slow_121b:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.border-fluid-e670 {
    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;
}

.border-fluid-e670:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.photo_2b39 {
    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;
}

.photo_c107 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.photo_c107:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.down_fed9 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.down_fed9:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.nav_3e6b {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.nav_3e6b: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);
}

.module_eb9e {
    font-size: 1em;
    font-weight: 700;
}

.card-5a9f {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.header_480d {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.header_480d::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;
}

.media_7d67 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .media_7d67 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.backdrop_dab1 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.sidebar_c05b {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.title-4ce1 {
    margin-bottom: 2rem;
}

.smooth_4a19 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .smooth_4a19 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.frame_da25 {
    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);
}

.thumbnail-27ca {
    font-size: 1.5rem;
}

.shadow_next_7972 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.orange-0b30 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dropdown-ab09 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.dropdown-ab09:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.fluid_a1c0 {
    text-align: center;
    margin-bottom: 3rem;
}

.left-d152 {
    margin-bottom: 1rem;
}

.thumbnail-a919 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.smooth-adba {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .smooth-adba {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .smooth-adba.search_next_4d6f {
        direction: rtl;
    }
    
    .smooth-adba.search_next_4d6f > * {
        direction: ltr;
    }
}

.title_next_60f7 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.title_next_60f7:first-child {
    margin-top: 0;
}

.wrapper-260c {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.active-89b8 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.active-89b8:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.panel-smooth-e079 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .panel-smooth-e079 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.preview-7411 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.summary-fluid-22d1 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.banner_5f9e {
    list-style: none;
}

.banner_5f9e li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.banner_5f9e li:last-child {
    border-bottom: none;
}

/* Games Features */
.right_7cbe {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.paper-5c3a {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.stone_93fe {
    font-size: 2rem;
    flex-shrink: 0;
}

.heading-complex-5d4f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.motion_a58b {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.gold-dd11 {
    margin: 2rem 0;
}

.motion-8687 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.green_842e {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.pro-9cc7 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.basic-314a {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.popup-ea7e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .popup-ea7e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sort-4197 {
    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);
}

.sort-4197:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.lower-1422 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.title_bright_e00b {
    font-size: 1.5rem;
}

.picture_next_eff7 {
    color: var(--accent-color);
    margin: 0;
}

.pagination_middle_1aa8 {
    list-style: none;
}

.pagination_middle_1aa8 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.pagination_middle_1aa8 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.mini_1706 {
    margin: 2rem 0;
}

.tabs_c07e {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.modal-58bb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .modal-58bb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.border-old-720e {
    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);
}

.article_dirty_e066 {
    font-size: 1.25rem;
}

.gallery-5d10 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.up-a259,
.left_6463 {
    text-align: center;
    margin: 2rem 0;
}

.slider-copper-15eb,
.form-motion-1d59 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.north-7431 {
    margin: 2rem 0;
    text-align: center;
}

.north_f03b {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.north_f03b::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;
}

.panel_03a0 {
    position: relative;
    z-index: 1;
}

.backdrop-thick-f2fd {
    margin-bottom: 1rem;
}

.grid-up-9403 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.east-4d68 {
    margin-bottom: 3rem;
}

.sort_gas_8155 {
    margin-top: 3rem;
}

.element-7130 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .element-7130 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.element-7130 .frame_da25 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.pattern_hovered_7554 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.down_9332 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.texture-stale-3c19 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.surface-3cd2 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .surface-3cd2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .surface-3cd2 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.pagination_gas_5e0f {
    margin-bottom: 1rem;
}

.layout_fresh_e4f2 img {
    margin-bottom: 1rem;
}

.wrapper-f554 {
    color: var(--text-gray);
    line-height: 1.6;
}

.fluid_af75 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.old_3023 {
    list-style: none;
}

.old_3023 li {
    margin-bottom: 0.5rem;
}

.old_3023 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.old_3023 a:hover {
    color: var(--accent-color);
}

.filter-tall-4ef4 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.backdrop-2144 {
    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);
}

.backdrop-2144:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.advanced-8f05 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.advanced-8f05 p {
    margin-bottom: 0.25rem;
}

.avatar-hot-559b {
    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) {
    .avatar-hot-559b {
        flex-direction: row;
    }
}

.first_3d4b {
    text-align: center;
}

@media (min-width: 768px) {
    .first_3d4b {
        text-align: left;
    }
}

.first_3d4b p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.shade_new_3aec {
    font-size: 0.75rem !important;
}

.layout-prev-843f {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.outer_d30b {
    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);
    }
}

.avatar_c720 {
    animation: fadeInUp 0.6s ease-out;
}

.button-9ee9 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.static-2445 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .static-2445 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.texture_bf62 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .texture_bf62 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tabs-fc26 {
    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);
}

.tabs-fc26 .stone_93fe {
    font-size: 1.25rem;
}

.tabs-fc26 .pro_210a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.mask-wood-9845 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .mask-wood-9845 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.iron_be2a {
    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);
}

.iron_be2a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.aside_963e {
    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);
}

.border-5337 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.up_9fe1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.photo-purple-ba2a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.right_62e5 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.right_62e5 .heading-complex-5d4f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.right_62e5 .motion_a58b {
    color: var(--text-gray);
    line-height: 1.6;
}

.caption-red-6383 {
    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);
}

.hidden_e3f0 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.hidden_e3f0 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.hidden_e3f0 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.dropdown_c28e {
    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);
}

.mini_9d0f {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tertiary_6b09 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tertiary_6b09 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.tertiary_6b09 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);
}

.tertiary_6b09 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.tertiary_6b09 input::placeholder {
    color: var(--text-muted);
}

.table_ba14 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.pressed_c7b4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.pressed_c7b4 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.notice_black_73a2 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.notice_black_73a2:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.modal-58bb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .modal-58bb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.border-old-720e {
    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);
}

.border-old-720e .article_dirty_e066 {
    font-size: 1.25rem;
}

.border-old-720e .gallery-5d10 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.tall_6292 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tertiary-23aa {
    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);
}

.tertiary-23aa .stone_93fe {
    font-size: 2rem;
    flex-shrink: 0;
}

.tertiary-23aa .heading-complex-5d4f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tertiary-23aa .motion_a58b {
    color: var(--text-gray);
    line-height: 1.6;
}

.dark-f2c0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.thick-fcdc {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.thick-fcdc .accordion-old-db7a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.thick-fcdc .down_8f74 {
    color: var(--text-gray);
    line-height: 1.6;
}

.thumbnail_cc02 {
    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);
}

.next-63ff {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .next-63ff {
        grid-template-columns: repeat(3, 1fr);
    }
}

.menu-ad3d {
    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);
}

.menu-ad3d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.column_f312 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.frame_hard_03ea {
    flex: 1;
}

.soft_8e11 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.video-down-85f5 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer_over_0ff2 {
    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);
}

.footer_over_0ff2:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.info-blue-c8cb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .info-blue-c8cb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.search_fixed_4d6f {
    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);
}

.search_fixed_4d6f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.preview-pro-7700 {
    font-size: 2rem;
    flex-shrink: 0;
}

.wrapper-selected-b7f9 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.element_e0a9 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.overlay-0ae0 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.huge_06bd {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dropdown_2583 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.mask_80a8 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.mask_80a8 .media_easy_8c38 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.mask_80a8 .footer-46df {
    color: var(--text-gray);
    line-height: 1.6;
}

.sidebar_right_727d {
    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);
}

.hard_963a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hero-9dba {
    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);
}

.hero-9dba .stone_93fe {
    font-size: 2rem;
    flex-shrink: 0;
}

.hero-9dba .heading-complex-5d4f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hero-9dba .motion_a58b {
    color: var(--text-gray);
    line-height: 1.6;
}

.gradient-clean-a399 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gradient-clean-a399 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.block-green-6016 {
    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);
}

.block-green-6016:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.down_42ac {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .down_42ac {
        grid-template-columns: repeat(4, 1fr);
    }
}

.secondary_ef60 {
    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);
}

.secondary_ef60:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.logo_copper_f0dc {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature_medium_8542 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.green_842e {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.frame-4591 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.texture_3a16 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pagination-b858 {
    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);
}

.pagination-b858:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.last_5f7d {
    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);
}

.basic_97d3 {
    flex: 1;
}

.sidebar_7507 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.fixed-4c30 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.tooltip-9729 {
    color: var(--text-gray);
    line-height: 1.6;
}

.header_6189 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.filter_selected_efb8 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.filter_selected_efb8 .accordion-old-db7a {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.filter_selected_efb8 .down_8f74 {
    color: var(--text-gray);
    line-height: 1.6;
}

.left_6463 {
    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);
}

.logo-f5a0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .logo-f5a0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.medium-b667 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .medium-b667 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.info-pro-c772 {
    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-pro-c772:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.active-328e {
    font-size: 2rem;
    flex-shrink: 0;
}

.banner_easy_db49 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.card_first_621b {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.copper-736a {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.filter-dirty-8fef {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.message_warm_6061 {
    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);
}

.next-fb9e {
    font-size: 2rem;
    flex-shrink: 0;
}

.backdrop-active-5370 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.layout-green-9634 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hard_963a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hero-9dba {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.hero-9dba .heading-complex-5d4f {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hero-9dba .motion_a58b {
    color: var(--text-gray);
    line-height: 1.6;
}

.old_8375 {
    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);
}

.notice-d68a {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .notice-d68a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .notice-d68a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.huge-d1c1 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.huge-d1c1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.focus-2ef2 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.panel_0b5f {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.aside_hard_615c {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.new-86d0 {
    padding: 1.5rem;
}

.preview-gas-944c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.smooth_12ca {
    list-style: none;
    padding: 0;
    margin: 0;
}

.smooth_12ca 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;
}

.smooth_12ca li:last-child {
    border-bottom: none;
}

.smooth_12ca li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.light-b7a8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .light-b7a8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.menu_green_76f4 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.menu_green_76f4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.chip_left_a193 {
    font-size: 2rem;
    flex-shrink: 0;
}

.accent_prev_3445 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.lower-c2ee {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.row_dark_c121 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.filter-3990 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.smooth-58b9 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.east_4bd0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.wood-dc6a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tooltip_huge_43a9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.slow_281d {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.message_clean_e714 {
    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);
}

.mini_447f {
    text-align: center;
}

.sort-out-6529 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.table-f643 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.component-2908 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.shade_2ab1 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shade_2ab1 .heading-complex-5d4f {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.shade_2ab1 .motion_a58b {
    color: var(--text-gray);
    line-height: 1.6;
}

.gradient-top-0fcc {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .gradient-top-0fcc {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gradient-top-0fcc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.row-active-7b39 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.row-active-7b39:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.banner-first-8f89 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.wood_75e6 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.heading-complex-5d4f {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.hidden_brown_75c0 {
    padding: 1.5rem;
}

.motion_a58b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.icon_medium_d70f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.icon_medium_d70f 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;
}

.icon_medium_d70f li:last-child {
    border-bottom: none;
}

.icon_medium_d70f li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.tertiary-2e1d {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.dropdown_f0b0 {
    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);
}

.dropdown_f0b0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.card-soft-e8f3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.avatar_7fae {
    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);
}

.aside_963e {
    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;
}

.border-5337 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.up_9fe1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.text-center-01f8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tooltip-b1a9 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.message_c3c4 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.table_last_125b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.frame_tall_3e09 {
    display: flex;
    gap: 1rem;
}

.frame_tall_3e09 .card_soft_7b44 {
    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;
}

.first_b271 {
    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);
}

.north-4a31 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.status-9303 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.status-9303 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;
}

.status-9303 li:last-child {
    border-bottom: none;
}

.status-9303 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.summary_gas_a804 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .summary_gas_a804 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .summary_gas_a804 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pagination-purple-1362 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.pagination-purple-1362:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.soft_089f {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.text-1da2 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.media_easy_8c38 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.blue-0520 {
    font-size: 1rem;
}

.description_current_2ab8 {
    padding: 1.5rem;
}

.footer-46df {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.article_b21e {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.article_b21e .mini_447f {
    text-align: center;
}

.article_b21e .table-f643 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.article_b21e .current-c16f {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.summary-5800 {
    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);
}

.summary-5800:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.nav-narrow-2743 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .nav-narrow-2743 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.table-3145 {
    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);
}

.table-3145:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.advanced_0fae {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.container-ba82 {
    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);
}

.status_slow_65ed {
    font-size: 2rem;
    flex-shrink: 0;
}

.south_b437 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.gradient_fluid_ea11 {
    color: var(--text-gray);
    line-height: 1.6;
}

.grid_3426 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.fixed-9020 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.shadow_54df {
    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);
}

.backdrop_copper_f13a {
    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;
}

.backdrop_copper_f13a.hard-dad9 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.backdrop_copper_f13a.selected_8b0b {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.backdrop_copper_f13a.preview_bb6e {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.backdrop_copper_f13a.iron_9093 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.backdrop_copper_f13a.content_top_6391 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.light-8082 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.feature-yellow-8209 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hover_9f46 {
    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);
}

.black-2f66 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.dark-f2c0 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dark-f2c0 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;
}

.dark-f2c0 li:last-child {
    border-bottom: none;
}

.dark-f2c0 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.wide-41e9 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .wide-41e9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .wide-41e9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hero-c754 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.hero-c754:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hero-c754.chip_left_5bc1 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .hero-c754.chip_left_5bc1 {
        grid-column: span 3;
    }
}

.logo-2bd3 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.hero-c754.chip_left_5bc1 .logo-2bd3 {
    background: rgba(6, 182, 212, 0.1);
}

.form-up-796d {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.notice_1657 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.hero-c754.chip_left_5bc1 .notice_1657 {
    color: var(--info-color);
}

.card-7201 {
    padding: 1.5rem;
    text-align: center;
}

.filter-ec82 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.hero-c754.chip_left_5bc1 .filter-ec82 {
    color: var(--info-color);
}

.shade-b5e6 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.paragraph-clean-3747 {
    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 */
.picture-bfd1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .picture-bfd1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.north_756f {
    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);
}

.north_756f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.filter-basic-0800 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tertiary-23aa {
    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);
}

.article_dirty_e066 {
    font-size: 2rem;
    flex-shrink: 0;
}

.avatar-inner-b57a {
    flex: 1;
}

.tabs_c07e {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.image_f677 {
    color: var(--text-gray);
    line-height: 1.6;
}

.purple-002c {
    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);
}

.nav-simple-6a7d {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.accent-5cf1 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.outer_d30b {
    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);
}

.iron_04f5 {
  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);
}

.iron_04f5 .mini_447f {
    text-align: center;
}

.iron_04f5 .sort-out-6529 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.iron_04f5 .table-f643 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.mask-pressed-9c1e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.input_d570 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.inner-9a58 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.active_hard_082a {
    color: var(--text-gray);
    line-height: 1.6;
}

.main-fbd6 {
    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);
}

.medium-c26f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.item-hot-7189 {
    color: var(--text-gray);
    line-height: 1.6;
}

.action-88da {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .action-88da {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .action-88da {
        grid-template-columns: repeat(3, 1fr);
    }
}

.smooth-ab2b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.smooth-ab2b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.element-white-2805 {
    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);
}

.slow_e755 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.input_bb5d {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.card-6e51 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-6e51.header_dirty_9499 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.card-6e51.table_middle_e50e {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.card-6e51.fixed-8c57 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.shade_down_e401 {
    padding: 1.5rem;
    text-align: center;
}

.status-e4b2 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.accordion-c028 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.accordion-c028 .info-stale-3fb2 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.upper-e241 {
    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);
}

.upper-e241:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.red-dcf6 {
  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);
}

.layout_0814 {
    text-align: center;
}

.layout_0814 .sort-out-6529 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.layout_0814 .table-f643 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.new_c6ea { text-align: center; }
.current_3468 { text-align: left; }
.summary-236d { text-align: right; }

.input_upper_3e64 { margin-bottom: 0; }
.chip-6106 { margin-bottom: 0.5rem; }
.block-dynamic-9496 { margin-bottom: 1rem; }
.top-f302 { margin-bottom: 1.5rem; }
.highlight-paper-09f6 { margin-bottom: 2rem; }

.gas-bade { margin-top: 0; }
.black-2c6f { margin-top: 0.5rem; }
.paper_2748 { margin-top: 1rem; }
.dropdown-a4c8 { margin-top: 1.5rem; }
.tag-902c { margin-top: 2rem; }

.fn-hidden-7d37 { display: none; }
.fn-visible-7d37 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .header_480d {
        padding: 6rem 0 3rem;
    }
    
    .media_7d67 {
        text-align: center;
    }
    
    .smooth-adba {
        text-align: center;
    }
    
    .smooth_4a19 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .progress-clean-e065,
    .caption_9005,
    .north_f03b,
    .texture-stale-3c19 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .header_480d {
        background: none;
    }
}

/* Providers Section */
.notice_complex_666f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.summary_bottom_9236 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .summary_bottom_9236 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .summary_bottom_9236 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.small_02af {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.small_02af:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.block-red-b80d {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.active_58d6 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.paragraph-wood-2932 {
    list-style: none;
    padding: 0;
}

.paragraph-wood-2932 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.paragraph-wood-2932 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.hard_cbc4 {
    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_cbc4 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.grid-yellow-2df7 {
    padding: var(--section-padding);
}

.element-down-ca18 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .element-down-ca18 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.shadow-green-e6e5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.shadow-green-e6e5:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.hot-d772 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.component-first-9178 {
    display: flex;
    flex-direction: column;
}

.panel-in-a298 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.container_a47a {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.stale_26ce {
    color: var(--accent-color);
}

.content-wide-e8f5 {
    font-size: 1.25rem;
}

.smooth-3073 {
    margin-bottom: 1rem;
}

.smooth-3073 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.prev-661d {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.primary_complex_868e {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.mini_447f {
    text-align: center;
}

.sort-out-6529 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.table-f643 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.media_west_a47b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.background-9576 {
    margin: 2rem 0;
}

.outline-5993 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.outline-5993 .stone_93fe {
    font-size: 2rem;
    flex-shrink: 0;
}

.focus_iron_b65a {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.item_action_2a79 {
    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;
}

.item_action_2a79:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.steel_a858 {
    font-size: 2rem;
}

.mini_ef20 {
    display: flex;
    flex-direction: column;
}

.column-light-3f49 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.main_f9f1 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.steel-19b5 {
    padding: var(--section-padding);
}

.table_3920 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .table_3920 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .table_3920 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tall_fbbd {
    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);
}

.tall_fbbd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.tall_fbbd .sort-out-6529 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.tall_fbbd .table-f643 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.tall_fbbd .sort_97cb {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.info_inner_a65b {
    margin-top: 4rem;
}

.label-easy-28a4 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.sidebar-blue-e896 {
    overflow-x: auto;
}

.outer_f498 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.outer_f498 thead {
    background: var(--accent-color);
}

.outer_f498 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.outer_f498 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.outer_f498 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.outer_f498 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.warm_94d9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.fresh-9f07 {
    max-width: 900px;
    margin: 0 auto;
}

.outline_1add {
    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);
}

.outline_1add:hover {
    border-color: var(--accent-color);
}

.list_1b8a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.list_1b8a h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.disabled_static_45d1 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.outline_1add.fn-active-7d37 .disabled_static_45d1 {
    transform: rotate(45deg);
}

.item-steel-ff21 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.outline_1add.fn-active-7d37 .item-steel-ff21 {
    max-height: 1000px;
}

.item-steel-ff21 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.modal_steel_33e0 {
    padding: var(--section-padding);
}

.hidden_e3f0 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.table-wood-d42b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.header_6f25 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .header_6f25 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.element_79d4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.fixed-c99c {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.heading_stale_96bc {
    font-size: 2rem;
}

.picture_9fef {
    color: var(--text-white);
    margin: 0;
}

.notification-yellow-443c {
    list-style: none;
    padding: 0;
}

.notification-yellow-443c li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.notification-yellow-443c li:last-child {
    border-bottom: none;
}

.section_small_5df0 {
    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);
}

.section_small_5df0 p {
    color: var(--success-color);
    margin: 0;
}

.panel-static-1de0 {
    margin-top: 3rem;
}

.north-4a31 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.popup_light_a345 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .popup_light_a345 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.blue_aea7 {
    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);
}

.item_b7cd {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.blue_aea7 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.slider_7ebe {
    padding: var(--section-padding);
}

.border_33f6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .border_33f6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.media_iron_4349 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.media_iron_4349:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.overlay-f726 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.soft_f175 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.sort-blue-124a {
    flex: 1;
}

.block_3ac0 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.copper_f67e {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.sidebar-top-4697 {
    color: var(--text-gray);
    line-height: 1.6;
}

.breadcrumb-c40e {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb-c40e:last-child {
    border-bottom: none;
}

/* Comparison Section */
.texture-475a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.status-next-76a1 {
    padding: var(--section-padding);
}

.glass-8b6b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.down_3221 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .down_3221 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tabs_7c7b {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.popup_white_08b9, .summary_basic_d1c9, .motion-2b76 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.motion-2b76 {
    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 */
.form_last_3a06 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.search_gas_49cb {
    margin: 2rem 0;
}

.menu_fluid_bd65 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.advanced-f9e9 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.caption_white_ebff {
    list-style: none;
    padding: 0;
}

.caption_white_ebff 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;
}

.caption_white_ebff li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.caption_white_ebff li:last-child {
    border-bottom: none;
}

.list_hovered_cd17 {
    text-align: center;
    margin-top: 2rem;
}

.basic_8a6c {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.fresh_118f {
    padding: var(--section-padding);
}

.complex_99f8 {
    margin: 2rem 0;
}

.highlight-wood-0cbd {
    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) {
    .highlight-wood-0cbd {
        flex-direction: column;
        align-items: flex-start;
    }
}

.highlight-wood-0cbd:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.blue-111d {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.action_1509 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.form-35c0 {
    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;
}

.next_bad7 {
    flex: 1;
}

.disabled-335d {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.pagination-active-ab97 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.shade-middle-b8c4 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.red-dae1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .red-dae1 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.hover_up_b3c0 {
    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);
}

.hover_up_b3c0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.hover_up_b3c0 .sort-out-6529 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hover_up_b3c0 .table-f643 {
    color: var(--text-gray);
    font-size: 1rem;
}

.element-a54c {
    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);
}

.small-c48e {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.small-c48e strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.under-3101 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .under-3101 {
        grid-template-columns: 1fr 1fr;
    }
}

.input-red-b793 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.layout_current_7637 {
    margin-bottom: 1.5rem;
}

.layout_current_7637 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.layout_current_7637 input,
.layout_current_7637 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;
}

.layout_current_7637 input:focus,
.layout_current_7637 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.advanced_93af {
    width: 100%;
    margin-top: 1rem;
}

.lite-c08d {
    display: flex;
    align-items: center;
}

.tag_hard_f60b {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.tooltip_east_0f61 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.nav-motion-8180 {
    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;
}

.small-020c {
    color: var(--text-gray);
}

.focus-7941 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.outer_e4b4 {
    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);
}

.outer_e4b4 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.pagination-7440 {
    margin-top: 3rem;
}

.warm_5b59 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.element-small-d145 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.bronze_9208 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.wrapper-active-55fb {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wrapper-active-55fb:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.huge_138c {
    padding: var(--section-padding);
}

.backdrop_146f {
    margin: 2rem 0;
}

.main_d041 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.gallery_south_da65 {
    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;
}

.gallery_south_da65:hover, .gallery_south_da65.fn-active-7d37 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.accent_bright_7583 {
    display: none;
}

.accent_bright_7583.fn-active-7d37 {
    display: block;
}

.filter_tiny_7099 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.green_ff62 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.out-b760 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.out-b760 ul {
    list-style: none;
    padding: 0;
}

.out-b760 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.out-b760 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.banner_cool_0415 {
    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 */
.soft-ed5f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.brown-be20 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.under_1439 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.progress_a955 {
    color: var(--accent-color);
    margin: 0;
}

.thumbnail-c16f {
    display: flex;
    gap: 1.5rem;
}

.wrapper-gold-a0d4 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.large_04db {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.detail_pro_d00c {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.detail_pro_d00c.lower_ce5d {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.detail_pro_d00c.liquid-1f25 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.detail_pro_d00c.footer-current-b358 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.box_912f {
    margin-top: 2rem;
}

.preview-8639 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.component-7492 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .component-7492 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wood-cee0 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.image-selected-2534 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.tooltip-8051 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.feature-24f8 {
    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 */
.image-green-25d8 {
    padding: var(--section-padding);
}

.shade-7da5 {
    margin: 2rem 0;
}

.item_bottom_4af8 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.brown-dcbc {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.frame_static_0b25 {
    list-style: none;
    padding: 0;
}

.frame_static_0b25 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;
}

.frame_static_0b25 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.frame_static_0b25 li:last-child {
    border-bottom: none;
}

.status-complex-c97b {
    margin: 2rem 0;
}

.popup-dirty-fe86 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.image-1caf {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .image-1caf {
        grid-template-columns: repeat(2, 1fr);
    }
}

.alert_7247 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.menu-7559 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.gold_4c72 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.lite_6381 {
    margin-top: 2rem;
}

.soft_8e11 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.thumbnail-south-91fa {
    list-style: none;
    padding: 0;
}

.logo_fluid_83f4 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.logo_fluid_83f4 a {
    color: var(--accent-color);
    text-decoration: none;
}

.logo_fluid_83f4 a:hover {
    text-decoration: underline;
}

.button-narrow-7385 {
    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 */
.info-b14b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.media-action-2446 {
    margin: 2rem 0;
}

.hidden_b340 {
    margin-bottom: 3rem;
}

.hidden_b340 .advanced-f9e9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.lite-ad1c {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.bottom_a759 {
    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);
}

.bottom_a759:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.search-d32b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .search-d32b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-6f29 {
    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 */
.status-442e {
    padding: var(--section-padding);
}

.gradient-a1c4 {
    margin: 2rem 0;
}

.hard_5461 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.static_d322 {
    overflow-x: auto;
    margin: 2rem 0;
}

.short-643e {
    background: rgba(6, 182, 212, 0.1) !important;
}

.carousel_d991 {
    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;
}

.logo-c94c {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.hidden-c576 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .hidden-c576 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pink_2a1d {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pink_2a1d .stone_93fe {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.pink_2a1d .heading-complex-5d4f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.item_d192 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.top-aff2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.highlight-dynamic-ea21 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .highlight-dynamic-ea21 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.thumbnail_west_15e3 {
    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;
}

.thumbnail_west_15e3:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.focused-6bb7 {
    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);
}

.yellow-95d3 {
    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;
}

.gradient_over_3dc5 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.alert-large-420f {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.iron-b347 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.out-d212 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-e189 {
    color: var(--text-white);
    font-weight: 600;
}

.link-in-56aa {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.liquid_23d7 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.liquid_23d7 .card_soft_7b44 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.silver-08d9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .silver-08d9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card_71af {
    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);
}

.card_71af:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.card_71af .sort-out-6529 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.card_71af .table-f643 {
    color: var(--text-gray);
    font-size: 1rem;
}

.out-8893 {
    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);
}

.slider-aa32 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.slider-aa32 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.filter-dirty-8fef {
    margin: 2rem 0;
}

.message_warm_6061 {
    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);
}

.message_warm_6061:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.next-fb9e {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.label_fb31 {
    flex: 1;
}

.backdrop-active-5370 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.layout-green-9634 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.hard_963a {
    margin: 2rem 0;
}

.hero-9dba {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hero-9dba .heading-complex-5d4f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.hero-9dba .motion_a58b {
    color: var(--text-gray);
    margin: 0;
}

.old_8375 {
    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);
}

.old_8375 .slider-copper-15eb {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.item_d192 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.last_5f7d {
    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;
}

.basic_97d3 {
    flex: 1;
}

.fixed-4c30 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.tooltip-9729 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.aside_963e {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.image-806d {
    flex: 1;
}

.border-5337 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.up_9fe1 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.message_c3c4 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.table_last_125b {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.frame_tall_3e09 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.frame_tall_3e09 .card_soft_7b44 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.first_b271 {
    margin-top: 2rem;
}

.first_b271 .north-4a31 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.up_eb5c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.message_clean_e714 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .message_clean_e714 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.message_clean_e714 .mini_447f {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.component-2908 {
    margin: 2rem 0;
}

.shade_2ab1 {
    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 */
.hidden-short-cec2 {
    padding: var(--section-padding);
}

.hidden_brown_75c0 {
    margin-top: 1rem;
}

.icon_medium_d70f {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.icon_medium_d70f li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.icon_medium_d70f li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.block_action_e632 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.main-slow-e016 {
    margin: 2rem 0;
}

.title-9759 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.container_4a6f {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.over_bc92 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.row-warm-c177 {
    margin: 2rem 0;
}

.inner_ed85 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.inner_ed85 .advanced-f9e9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hovered_0a59 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hovered_0a59 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.simple-e5e1 {
    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);
}

.black_b9a9 {
    color: var(--text-white);
    font-weight: 600;
}

.info_35f6 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.small-9970 {
    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);
}

.small-9970 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.sort_smooth_35e4 {
    padding: var(--section-padding);
}

.slow_c743 {
    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;
}

.slow_c743:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.static-87ca {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.static-87ca .item_b7cd {
    font-size: 2rem;
    flex-shrink: 0;
}

.static-87ca .tooltip_bronze_e8ec {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.status_fd3b {
    flex: 1;
}

.focus_thick_2306 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hard-e614 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hard-e614 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.hard-e614 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.warm_0d07 {
    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);
}

.warm_0d07 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.warm_0d07 strong {
    color: var(--warning-color);
}

/* Slots Section */
.focused-34ce {
    padding: var(--section-padding);
}

.huge_06bd {
    margin: 2rem 0;
}

/* Table Games Section */
.preview-blue-0b2d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dropdown_2583 {
    margin: 2rem 0;
}

.mask_80a8 {
    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);
}

.mask_80a8:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.mask_80a8 .media_easy_8c38 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.mask_80a8 .footer-46df {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.sidebar_right_727d {
    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);
}

.sidebar_right_727d .slider-copper-15eb {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.menu_next_8824 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.feature_red_5b72 {
    margin: 2rem 0;
}

.motion_6c85 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hidden-6f0d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.main_fixed_045b {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.picture-yellow-00cd {
    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);
}

.picture-yellow-00cd:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.picture-yellow-00cd.fn-active-7d37 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.stone-850c {
    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);
}

.warm_92ec {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.warm_92ec strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.narrow-b43f {
    padding: var(--section-padding);
}

.gas-244b {
    margin: 2rem 0;
}

.thumbnail-5bec {
    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);
}

.thumbnail-5bec:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .thumbnail-5bec {
        flex-direction: column;
        align-items: flex-start;
    }
}

.over_573e {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.steel-09fe {
    flex: 1;
}

.notification_hovered_0708 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.in-31a5 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.slow_e957 {
    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;
}

.main-huge-4df9 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.advanced_c3bf {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.bottom-fb2b {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.link_bronze_e80e {
    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;
}

.link_bronze_e80e:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.header_f39e {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.hot-7773 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.hot-7773 strong {
    color: var(--accent-color);
}

/* New Games Section */
.secondary-90d4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.highlight-6b1b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .highlight-6b1b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .highlight-6b1b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.panel_out_eca8 {
    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;
}

.panel_out_eca8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.heading_ef10 {
    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;
}

.alert_2b20 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.picture-purple-6b08 {
    font-size: 2rem;
}

.mask_4ab1 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.wrapper-rough-39a8 {
    flex: 1;
}

.block-cool-e043 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.west-004a {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.image-8def {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.focus_20ee {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.content-hovered-9801 {
    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;
}

.menu_middle_aab6 {
    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;
}

.menu_middle_aab6:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.fixed-c38b {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tertiary_626f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.lite-bead {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .lite-bead {
        grid-template-columns: repeat(3, 1fr);
    }
}

.header_active_72ef {
    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);
}

.bottom_ff78 {
    color: var(--text-white);
    font-weight: 600;
}

.heading_orange_29fa {
    color: var(--accent-color);
    font-weight: 600;
}

.form_4d6e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.form_4d6e strong {
    color: var(--accent-color);
}

/* Security Section */
.west-26c1 {
    padding: var(--section-padding);
}

/* Benefits Section */
.heading_1a37 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.accordion_action_c138 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.black_8f5b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pressed-0e28 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.gold-88ac {
    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) {
    .gold-88ac {
        flex-direction: column;
        gap: 1rem;
    }
}

.gold-88ac:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.gold-88ac .aside_963e {
    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;
}

.gold-88ac .image-806d {
    flex: 1;
}

.gold-88ac .border-5337 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.gold-88ac .up_9fe1 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.feature_ef05 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.feature_ef05 .tabs_c07e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.feature_ef05 .tall_6292 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature_ef05 .tall_6292 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.feature_ef05 .tall_6292 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.item_first_5f6e {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.module-thick-ce4c {
    padding: var(--section-padding);
}

.filter_in_e686 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .filter_in_e686 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.motion_45c0 {
    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);
}

.motion_45c0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.motion_45c0 .tertiary-e3f1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.motion_45c0 .preview_8301 {
    flex: 1;
}

.motion_45c0 .accordion-old-db7a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.motion_45c0 .block_cold_f1d1 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.smooth_cdee {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.smooth_cdee .current_b20f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.smooth_cdee .form_gas_fd05 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.smooth_cdee .form_gas_fd05 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);
}

.smooth_cdee .form_gas_fd05 li:last-child {
    border-bottom: none;
}

.smooth_cdee .form_gas_fd05 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;
}

.smooth_cdee .form_gas_fd05 li strong {
    color: var(--text-white);
}

.accent-84e6 {
    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);
}

.accent-84e6 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.accent-84e6 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.frame-liquid-2a14 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.west_a9cd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .west_a9cd {
        grid-template-columns: repeat(2, 1fr);
    }
}

.border-current-aa3d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.border-current-aa3d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.gold_6a96 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom-c131 {
    font-size: 2rem;
}

.panel_lower_0a11 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.video-over-bcc7 {
    flex: 1;
}

.bronze_32fd {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bronze_32fd li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.bronze_32fd li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.thumbnail_68b7 {
    margin-top: 3rem;
}

.item_bottom_4af8 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.brown-dcbc {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.frame_static_0b25 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.frame_static_0b25 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.frame_static_0b25 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.frame_static_0b25 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.footer_dynamic_af39 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.bronze_5baa {
    margin: 2rem 0;
}

.plasma_27c6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.plasma_27c6 .advanced-f9e9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.background-motion-faad {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .background-motion-faad {
        grid-template-columns: repeat(2, 1fr);
    }
}

.plasma_9374 {
    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);
}

.plasma_9374:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.south-6eed {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stale-a4d5 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.sort-dim-2f31 {
    padding: var(--section-padding);
}

.block-steel-edc1 {
    margin: 2rem 0;
}

.dynamic_fdc7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .dynamic_fdc7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .dynamic_fdc7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.input-huge-9495 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.input-huge-9495:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.link_lite_9e14 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.icon-edda {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.picture-blue-c0d2 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.picture-blue-c0d2.complex_86f5 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.primary_out_81f9 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.fast-42f2 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.outer_d27a {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.surface-huge-e5c8 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.message-1a10 {
    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);
}

.message-1a10 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.message-1a10 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.copper-33d8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.label_b682 {
    margin: 2rem 0;
}

.white_ed40 {
    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) {
    .white_ed40 {
        flex-direction: column;
        gap: 1rem;
    }
}

.white_ed40:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.white_ed40::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);
}

.first_a16f {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.breadcrumb-b226 {
    flex: 1;
}

.logo_f5b4 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.message-b35c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.message-b35c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.hover-ce89 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pagination-white-7d09 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hot_65ea {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hot_65ea {
        grid-template-columns: repeat(3, 1fr);
    }
}

.accent-clean-94fb {
    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);
}

.over_f9be {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.active-22bd {
    flex: 1;
}

.title-b478 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.green_b7af {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.gallery_02b5 {
    margin-top: 2rem;
    text-align: center;
}

.easy-6479 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.easy-6479 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.nav-narrow-2743 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .nav-narrow-2743 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.table-3145 {
    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);
}

.table-3145:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.table-3145 .chip_left_a193 {
    font-size: 2rem;
    flex-shrink: 0;
}

.table-3145 .accent_prev_3445 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.table-3145 .lower-c2ee {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.table-3145 .row_dark_c121 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.overlay-0ebc {
    padding: var(--section-padding);
}

.container-ba82 .modal_static_13d9 {
    flex: 1;
}

/* Promo Calendar Section */
.preview-lite-d9c6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.sort-large-3135 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .sort-large-3135 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.content-ff34 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.white-aac7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.button_6840 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dropdown-a671 {
    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);
}

.black-96d8 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.white_bf36 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.hovered_fa3b {
    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);
}

.hovered_fa3b p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.hovered_fa3b strong {
    color: var(--accent-color);
}

/* Requirements Section */
.nav-f310 {
    padding: var(--section-padding);
}

.tooltip_635b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .tooltip_635b {
        grid-template-columns: repeat(2, 1fr);
    }
}

.article_thick_29ea {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.cool_e4be {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.focus_ac46 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.focus_ac46 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.modal_solid_d922 {
    margin-top: 3rem;
}

.modal_solid_d922 .item_bottom_4af8 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.modal_solid_d922 .brown-dcbc {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.modal_solid_d922 .frame_static_0b25 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.modal_solid_d922 .frame_static_0b25 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.modal_solid_d922 .frame_static_0b25 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.modal_solid_d922 .frame_static_0b25 li strong {
    color: var(--warning-color);
}

.mask-24cb {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.mask-24cb strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.paragraph_e49e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tabs-complex-3703 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tabs-complex-3703 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid-4dbc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.grid-4dbc .advanced-f9e9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.image_bf89 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.last-9747 {
    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);
}

.last-9747:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.accent-a22f {
    font-size: 2rem;
    flex-shrink: 0;
}

.status_cdbd {
    flex: 1;
}

.paragraph-58f7 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.rough-498b {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.picture_dim_7bcc {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.small_91de {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.media-yellow-e60e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .media-yellow-e60e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.layout-dynamic-b7fe {
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.layout-dynamic-b7fe:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.hero_e583 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.detail_39fb {
    color: var(--text-gray);
    font-size: 1rem;
}

.small-c48e {
    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);
}

.short-15f3 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.short-15f3 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.module-black-5ab2 { 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; }
.dropdown-ab09, .active-89b8 { max-width:100%; height:auto; }

.upper-25e6, .border-fluid-e670, .photo_2b39 { white-space:normal; }

.media_7d67,
.smooth-adba,
.picture-bfd1,
.nav-narrow-2743,
.hard_963a,
.action-88da {
  flex-wrap:wrap;
}

[class*="grid"],
.media-yellow-e60e,
.dynamic_fdc7,
.element-7130 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.header_480d img,
.smooth-adba img,
.orange-0b30 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.backdrop_dab1, .sidebar_c05b,
.left-d152, .thumbnail-a919 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.sidebar-blue-e896 { width:100%; overflow-x:auto; }
.sidebar-blue-e896 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.summary_bottom_9236 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .summary_bottom_9236 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.small_02af {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.table_3920,
.element-first-279d,
.title_medium_9fb1,
.texture_green_d187,
.red-dae1,
.media-yellow-e60e,
.dynamic_fdc7,
.element-7130,
.red-dcf6,
.gas-244b,
.summary_bottom_9236 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .table_3920,
  .element-first-279d,
  .title_medium_9fb1,
  .texture_green_d187,
  .red-dae1,
  .media-yellow-e60e,
  .dynamic_fdc7,
  .element-7130,
  .red-dcf6,
  .gas-244b,
  .summary_bottom_9236 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.tall_fbbd,
.hover_up_b3c0,
.layout-dynamic-b7fe,
.frame_da25,
.input-huge-9495,
.layout_0814,
.thumbnail-5bec,
.small_02af {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.gallery-5bc2,
.badge_7f02,
.dim_e88f {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.gallery-5bc2 > *,
.badge_7f02 > *,
.dim_e88f > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 2118 */
.phantom-card-b4 {
  padding: 0.2rem;
  font-size: 14px;
  line-height: 1.0;
}
