/* {$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;
}

.cool_e189 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.short_c081 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .short_c081 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .short_c081 {
        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 */
.grid_easy_3616 {
    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);
}

.wide_14d0 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .wide_14d0 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .alert_north_5ab3 {
        grid-column: 1;
    }
    
    .background-ef6a {
        grid-column: 2;
    }
    
    .block-dd27 {
        grid-column: 3;
    }
}

.alert_north_5ab3 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.alert_north_5ab3:hover img {
    transform: scale(1.05);
}

/* Navigation */
.surface-9b91 {
    display: none;
}

@media (min-width: 1024px) {
    .surface-9b91 {
        display: block;
    }
}

/* Grouped Navigation */
.gallery-selected-9818 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.video-current-3af8 {
    position: relative;
}

.notification-3170 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.video-current-3af8 .surface-east-7bbe {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.surface-east-7bbe {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.stone_cc48 {
    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;
}

.stone_cc48:hover,
.stone_cc48.fn-active-61cc {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.tag_4b9e {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .tag_4b9e {
        display: flex;
    }
}

/* Mobile Register Button */
.background-ef6a {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .background-ef6a {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.progress_outer_9e2e {
    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;
}

.progress_outer_9e2e::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 */
.block-dd27 {
    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) {
    .block-dd27 {
        display: none;
    }
}

.block-dd27 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.block-dd27.fn-active-61cc span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.block-dd27.fn-active-61cc span:nth-child(2) {
    opacity: 0;
}

.block-dd27.fn-active-61cc span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.hard-fe7f {
    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;
}

.hard-fe7f.fn-active-61cc {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.secondary_8b81 {
    overflow: hidden;
}

.pro_766f {
    list-style: none;
    padding: 0.75rem 0;
}

.active-top-8eae {
    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;
}

.active-top-8eae:hover,
.active-top-8eae.fn-active-61cc {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.active-top-8eae.video_bottom_1c0a {
    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;
}

.active-top-8eae.video_bottom_1c0a::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 */
.link_white_6198 {
    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;
}

.tabs-next-7b70 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.tabs-next-7b70:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.middle-fd5c {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.middle-fd5c:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.background_4257 {
    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;
}

.background_4257:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.module_gold_a482 {
    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;
}

.tag_iron_4d37 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.tag_iron_4d37:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.sort_green_b1f7 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.sort_green_b1f7:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.photo_iron_e002 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.photo_iron_e002: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);
}

.grid_67eb {
    font-size: 1em;
    font-weight: 700;
}

.sort-plasma-e5d0 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.notice-2a2a {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.notice-2a2a::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;
}

.carousel-daa8 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .carousel-daa8 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.column-green-0dfd {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.east_8178 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.last_d152 {
    margin-bottom: 2rem;
}

.chip_advanced_9121 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .chip_advanced_9121 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.prev-8de1 {
    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);
}

.wide_359a {
    font-size: 1.5rem;
}

.bright_ed6f {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.input-dark-716f {
    display: flex;
    justify-content: center;
    align-items: center;
}

.alert-62e7 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.alert-62e7:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.active_38ad {
    text-align: center;
    margin-bottom: 3rem;
}

.overlay-213d {
    margin-bottom: 1rem;
}

.fast_1f1b {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.image-dark-013d {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .image-dark-013d {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .image-dark-013d.heading_63ea {
        direction: rtl;
    }
    
    .image-dark-013d.heading_63ea > * {
        direction: ltr;
    }
}

.status_7db0 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.status_7db0:first-child {
    margin-top: 0;
}

.layout-4110 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.card_dynamic_2dc0 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.card_dynamic_2dc0:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.secondary_d8fe {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .secondary_d8fe {
        grid-template-columns: repeat(3, 1fr);
    }
}

.small-3507 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.steel_f154 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.outline-smooth-933d {
    list-style: none;
}

.outline-smooth-933d li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.outline-smooth-933d li:last-child {
    border-bottom: none;
}

/* Games Features */
.fresh-3062 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.tertiary-aea5 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info_c8cd {
    font-size: 2rem;
    flex-shrink: 0;
}

.red_c113 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.card-49d5 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.link_633e {
    margin: 2rem 0;
}

.gallery-lower-3187 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.huge-74b2 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.liquid_3bf7 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.tertiary-6989 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.sort-west-ed3c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .sort-west-ed3c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.slider_up_9722 {
    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);
}

.slider_up_9722:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.secondary_tiny_80b7 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.dirty-6013 {
    font-size: 1.5rem;
}

.cold-8ddb {
    color: var(--accent-color);
    margin: 0;
}

.label_2497 {
    list-style: none;
}

.label_2497 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.label_2497 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.background_bedb {
    margin: 2rem 0;
}

.in_40f9 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.shade_plasma_a187 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .shade_plasma_a187 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.light_83e4 {
    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);
}

.basic-fb4d {
    font-size: 1.25rem;
}

.layout_c6e6 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.paragraph_old_0158,
.container-green-3174 {
    text-align: center;
    margin: 2rem 0;
}

.notification-wide-cfda,
.mask-down-0be1 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.alert_up_75bc {
    margin: 2rem 0;
    text-align: center;
}

.summary-cc0f {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.summary-cc0f::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;
}

.blue_99f2 {
    position: relative;
    z-index: 1;
}

.red_6959 {
    margin-bottom: 1rem;
}

.rough_41ed {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.smooth-753c {
    margin-bottom: 3rem;
}

.wood-846f {
    margin-top: 3rem;
}

.frame_cold_62f0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .frame_cold_62f0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.frame_cold_62f0 .prev-8de1 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.orange-12e7 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.overlay-copper-d486 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.video-cc75 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.info-short-5485 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .info-short-5485 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .info-short-5485 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.module-dim-7a07 {
    margin-bottom: 1rem;
}

.photo-steel-a010 img {
    margin-bottom: 1rem;
}

.container-in-2b57 {
    color: var(--text-gray);
    line-height: 1.6;
}

.detail-red-9958 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.video-medium-30cf {
    list-style: none;
}

.video-medium-30cf li {
    margin-bottom: 0.5rem;
}

.video-medium-30cf a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.video-medium-30cf a:hover {
    color: var(--accent-color);
}

.current_f97a {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.plasma-e6cd {
    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);
}

.plasma-e6cd:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.light_6e67 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.light_6e67 p {
    margin-bottom: 0.25rem;
}

.modal_gold_568b {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .modal_gold_568b {
        flex-direction: row;
    }
}

.list-inner-c11d {
    text-align: center;
}

@media (min-width: 768px) {
    .list-inner-c11d {
        text-align: left;
    }
}

.list-inner-c11d p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.hard_13c0 {
    font-size: 0.75rem !important;
}

.tabs_prev_2705 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.main_red_5c53 {
    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);
    }
}

.west_d722 {
    animation: fadeInUp 0.6s ease-out;
}

.box_d7dc {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.active_down_4cf1 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .active_down_4cf1 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.gas_e6d2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gas_e6d2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.frame-yellow-b603 {
    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);
}

.frame-yellow-b603 .info_c8cd {
    font-size: 1.25rem;
}

.frame-yellow-b603 .accent-full-bb52 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.preview-8286 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .preview-8286 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.out-a7a5 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    transition: var(--transition-normal);
}

.out-a7a5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.sidebar_gold_2098 {
    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);
}

.iron_81e8 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.wrapper-aa81 {
    color: var(--text-gray);
    line-height: 1.6;
}

.header-8843 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.block-e978 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.block-e978 .red_c113 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.block-e978 .card-49d5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.description-85b4 {
    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);
}

.wrapper-d264 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.wrapper-d264 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.wrapper-d264 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.dynamic_9444 {
    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);
}

.sidebar_hot_cc48 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.surface_cfaf {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.surface_cfaf label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.surface_cfaf 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);
}

.surface_cfaf input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.surface_cfaf input::placeholder {
    color: var(--text-muted);
}

.orange_68e9 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.card-fixed-1a27 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.card-fixed-1a27 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.table_new_7314 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.table_new_7314:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.shade_plasma_a187 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shade_plasma_a187 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.light_83e4 {
    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);
}

.light_83e4 .basic-fb4d {
    font-size: 1.25rem;
}

.light_83e4 .layout_c6e6 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.tiny-56e4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.media_dim_244d {
    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);
}

.media_dim_244d .info_c8cd {
    font-size: 2rem;
    flex-shrink: 0;
}

.media_dim_244d .red_c113 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.media_dim_244d .card-49d5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.aside_dirty_40a3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.heading_full_76c8 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.heading_full_76c8 .text-5cb9 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.heading_full_76c8 .notification-8d22 {
    color: var(--text-gray);
    line-height: 1.6;
}

.sidebar-3f93 {
    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);
}

.active_f1dd {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .active_f1dd {
        grid-template-columns: repeat(3, 1fr);
    }
}

.white-0cf3 {
    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);
}

.white-0cf3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.plasma_3833 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.media_03d3 {
    flex: 1;
}

.pro_4aaa {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.down-c5e5 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.row_f68d {
    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);
}

.row_f68d:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.dim-b997 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dim-b997 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dropdown_016b {
    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_016b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.container_mini_bb85 {
    font-size: 2rem;
    flex-shrink: 0;
}

.glass_7dc8 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.outline_down_174d {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.layout-medium-84ab {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.label-purple-358a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gradient-down-0cc6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.disabled-e0a2 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.disabled-e0a2 .badge_slow_4339 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.disabled-e0a2 .gallery-f874 {
    color: var(--text-gray);
    line-height: 1.6;
}

.active-east-8da8 {
    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);
}

.progress-clean-338e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.border_1fbb {
    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);
}

.border_1fbb .info_c8cd {
    font-size: 2rem;
    flex-shrink: 0;
}

.border_1fbb .red_c113 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.border_1fbb .card-49d5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.item-smooth-0c59 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .item-smooth-0c59 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.shadow_gold_02de {
    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);
}

.shadow_gold_02de:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.nav-947c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .nav-947c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.description-rough-7019 {
    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);
}

.description-rough-7019:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.list_old_01f7 {
    font-size: 2rem;
    flex-shrink: 0;
}

.texture_center_c0c9 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.huge-74b2 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.title-huge-eff1 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.input-05ed {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.basic_c51b {
    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);
}

.basic_c51b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.feature-stone-f6f0 {
    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);
}

.active-left-f93e {
    flex: 1;
}

.surface_9c12 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.tertiary-in-8fe8 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.button-b90e {
    color: var(--text-gray);
    line-height: 1.6;
}

.outline_lower_1e63 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wood-0ff8 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wood-0ff8 .text-5cb9 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.wood-0ff8 .notification-8d22 {
    color: var(--text-gray);
    line-height: 1.6;
}

.container-green-3174 {
    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);
}

.progress-fbc4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .progress-fbc4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.status_7981 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .status_7981 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.breadcrumb_8e1d {
    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);
}

.breadcrumb_8e1d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.caption_west_4d21 {
    font-size: 2rem;
    flex-shrink: 0;
}

.warm_f440 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.label_south_17f0 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.last_0f7e {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.list-huge-68f1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.element_d687 {
    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);
}

.card-b6a9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.copper_828f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hidden_top_4031 {
    color: var(--text-gray);
    line-height: 1.6;
}

.progress-clean-338e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.border_1fbb {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.border_1fbb .red_c113 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.border_1fbb .card-49d5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.layout-8256 {
    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);
}

.pressed-d7da {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .pressed-d7da {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pressed-d7da {
        grid-template-columns: repeat(4, 1fr);
    }
}

.grid_8699 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.grid_8699:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.mini-d715 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.dim-3794 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.breadcrumb_671d {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.outline-8fe8 {
    padding: 1.5rem;
}

.complex-4f73 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cold-2ab9 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cold-2ab9 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;
}

.cold-2ab9 li:last-child {
    border-bottom: none;
}

.cold-2ab9 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.stale-085d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .stale-085d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.menu_fa43 {
    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_fa43:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.carousel_9ba8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.focused-0867 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.accordion_7ecb {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.sort_1462 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.rough-df6c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.fast_d027 {
    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);
}

.wrapper-hot-186c {
    font-size: 2rem;
    flex-shrink: 0;
}

.outer_783c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.iron-32b0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.popup-plasma-53ea {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.hot-86cd {
    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);
}

.form_8a69 {
    text-align: center;
}

.form_black_9289 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.title_dim_fb40 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.status-200e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gradient_19cb {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gradient_19cb .red_c113 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.gradient_19cb .card-49d5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.disabled_hot_6792 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .disabled_hot_6792 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .disabled_hot_6792 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.top_ea7b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.top_ea7b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.thumbnail-b9e6 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.article_85e7 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.red_c113 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.gas_fb90 {
    padding: 1.5rem;
}

.card-49d5 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.alert_06cb {
    list-style: none;
    padding: 0;
    margin: 0;
}

.alert_06cb 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;
}

.alert_06cb li:last-child {
    border-bottom: none;
}

.alert_06cb li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.out-496f {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.active_left_f393 {
    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);
}

.active_left_f393:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.progress_dim_c1f1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.red-7756 {
    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);
}

.sidebar_gold_2098 {
    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;
}

.iron_81e8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.wrapper-aa81 {
    color: var(--text-gray);
    line-height: 1.6;
}

.fixed_fb88 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.title_77ab {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.detail-5548 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.preview_f174 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.wrapper_f1be {
    display: flex;
    gap: 1rem;
}

.wrapper_f1be .shade_da46 {
    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;
}

.hidden_b63f {
    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);
}

.disabled_895f {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.filter-advanced-1121 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-advanced-1121 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;
}

.filter-advanced-1121 li:last-child {
    border-bottom: none;
}

.filter-advanced-1121 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.link_gas_bf65 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .link_gas_bf65 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .link_gas_bf65 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.panel-east-f1d3 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.panel-east-f1d3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.fresh-f23b {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.notice_left_41b6 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.badge_slow_4339 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.table_basic_999d {
    font-size: 1rem;
}

.grid-full-faac {
    padding: 1.5rem;
}

.gallery-f874 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.main-orange-e887 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.main-orange-e887 .form_8a69 {
    text-align: center;
}

.main-orange-e887 .title_dim_fb40 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.main-orange-e887 .popup-selected-d73c {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.tag_b6e7 {
    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);
}

.tag_b6e7:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.summary_1758 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .summary_1758 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tall_461f {
    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);
}

.tall_461f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.item_d2ca {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.inner_7665 {
    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);
}

.input_fast_a9be {
    font-size: 2rem;
    flex-shrink: 0;
}

.shade-north-75df {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.item-6ccb {
    color: var(--text-gray);
    line-height: 1.6;
}

.progress_static_be51 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.heading-e91d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dirty-4c8a {
    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);
}

.row_2899 {
    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;
}

.row_2899.hover-fd06 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.row_2899.content-inner-caeb {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.row_2899.input-bdfb {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.row_2899.badge-d9aa {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.row_2899.black-f041 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.header_paper_b448 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.silver-689d {
    color: var(--text-gray);
    line-height: 1.6;
}

.badge_740b {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.frame-1f90 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.aside_dirty_40a3 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aside_dirty_40a3 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;
}

.aside_dirty_40a3 li:last-child {
    border-bottom: none;
}

.aside_dirty_40a3 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.south-8490 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .south-8490 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .south-8490 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.soft-3763 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.soft-3763:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.soft-3763.bright-f136 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .soft-3763.bright-f136 {
        grid-column: span 3;
    }
}

.dark_b0ad {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.soft-3763.bright-f136 .dark_b0ad {
    background: rgba(6, 182, 212, 0.1);
}

.gold-ca61 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.progress_4b74 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.soft-3763.bright-f136 .progress_4b74 {
    color: var(--info-color);
}

.row-small-1a6d {
    padding: 1.5rem;
    text-align: center;
}

.hover_8c7e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.soft-3763.bright-f136 .hover_8c7e {
    color: var(--info-color);
}

.thumbnail_liquid_4183 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.block-43fc {
    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 */
.article_lower_d98e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .article_lower_d98e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gradient-23d2 {
    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);
}

.gradient-23d2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.column_bronze_4646 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.media_dim_244d {
    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);
}

.basic-fb4d {
    font-size: 2rem;
    flex-shrink: 0;
}

.new-399d {
    flex: 1;
}

.in_40f9 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.block-6f20 {
    color: var(--text-gray);
    line-height: 1.6;
}

.chip_old_bafd {
    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);
}

.north-9081 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.caption_e883 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.main_red_5c53 {
    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);
}

.avatar-4979 {
  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);
}

.avatar-4979 .form_8a69 {
    text-align: center;
}

.avatar-4979 .form_black_9289 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.avatar-4979 .title_dim_fb40 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.description_slow_0882 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.aside_soft_2318 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hard-3e53 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.first_ebaa {
    color: var(--text-gray);
    line-height: 1.6;
}

.grid_a55b {
    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);
}

.light_5fa0 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.paragraph-401e {
    color: var(--text-gray);
    line-height: 1.6;
}

.medium-f71e {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .medium-f71e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .medium-f71e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.photo-light-153a {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.photo-light-153a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tag_simple_6df9 {
    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);
}

.huge-8a5c {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.orange_0d77 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.carousel_4e4f {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.carousel_4e4f.image_fa3f {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.carousel_4e4f.highlight_9531 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.carousel_4e4f.upper_bd6e {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.background-7564 {
    padding: 1.5rem;
    text-align: center;
}

.dropdown-e906 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.surface_next_2817 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.surface_next_2817 .input_current_7432 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.wood_da04 {
    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);
}

.wood_da04:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.preview-6eb3 {
  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);
}

.column-65b7 {
    text-align: center;
}

.column-65b7 .form_black_9289 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.column-65b7 .title_dim_fb40 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.easy-0de7 { text-align: center; }
.huge-e718 { text-align: left; }
.complex_de31 { text-align: right; }

.left-807f { margin-bottom: 0; }
.static-7cdf { margin-bottom: 0.5rem; }
.light_5849 { margin-bottom: 1rem; }
.summary-9371 { margin-bottom: 1.5rem; }
.tag_last_3cf7 { margin-bottom: 2rem; }

.new_ec30 { margin-top: 0; }
.medium_9f2c { margin-top: 0.5rem; }
.tall-26bc { margin-top: 1rem; }
.mask-green-f156 { margin-top: 1.5rem; }
.form-action-4b9f { margin-top: 2rem; }

.fn-hidden-61cc { display: none; }
.fn-visible-61cc { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .notice-2a2a {
        padding: 6rem 0 3rem;
    }
    
    .carousel-daa8 {
        text-align: center;
    }
    
    .image-dark-013d {
        text-align: center;
    }
    
    .chip_advanced_9121 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .grid_easy_3616,
    .hard-fe7f,
    .summary-cc0f,
    .video-cc75 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .notice-2a2a {
        background: none;
    }
}

/* Providers Section */
.first_f4a0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hidden_e0f9 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hidden_e0f9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hidden_e0f9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.inner-a145 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.inner-a145:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.red_f31c {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.thick-982a {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.shadow-last-882d {
    list-style: none;
    padding: 0;
}

.shadow-last-882d li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.shadow-last-882d li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.fixed-45c1 {
    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);
}

.fixed-45c1 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.wood-2b57 {
    padding: var(--section-padding);
}

.content-2c4b {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .content-2c4b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.header-630d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.header-630d:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.last_3f6b {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.row-4dba {
    display: flex;
    flex-direction: column;
}

.small_81f9 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.small-0fdc {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.notification-top-0948 {
    color: var(--accent-color);
}

.preview-stone-c978 {
    font-size: 1.25rem;
}

.image_large_7aad {
    margin-bottom: 1rem;
}

.image_large_7aad p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.icon_middle_efb2 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.gradient-thick-baa3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.form_8a69 {
    text-align: center;
}

.form_black_9289 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.title_dim_fb40 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.hover-last-599e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.liquid_a008 {
    margin: 2rem 0;
}

.texture_d720 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.texture_d720 .info_c8cd {
    font-size: 2rem;
    flex-shrink: 0;
}

.search_af2f {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.title-current-33b5 {
    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;
}

.title-current-33b5:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.wide-ac29 {
    font-size: 2rem;
}

.bronze-0b5d {
    display: flex;
    flex-direction: column;
}

.secondary_hovered_5684 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.wide-626e {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.border_hovered_05ff {
    padding: var(--section-padding);
}

.chip-next-a97b {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .chip-next-a97b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .chip-next-a97b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.black-e94f {
    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);
}

.black-e94f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.black-e94f .form_black_9289 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.black-e94f .title_dim_fb40 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.black-e94f .north-b085 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.summary_in_1172 {
    margin-top: 4rem;
}

.large-06b2 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.widget_8aa6 {
    overflow-x: auto;
}

.detail_silver_53fe {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.detail_silver_53fe thead {
    background: var(--accent-color);
}

.detail_silver_53fe th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.detail_silver_53fe td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.detail_silver_53fe tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.detail_silver_53fe tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.mask_f93f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.bronze_504d {
    max-width: 900px;
    margin: 0 auto;
}

.footer-gas-0243 {
    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);
}

.footer-gas-0243:hover {
    border-color: var(--accent-color);
}

.selected_94b0 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.selected_94b0 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.narrow_2780 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.footer-gas-0243.fn-active-61cc .narrow_2780 {
    transform: rotate(45deg);
}

.old-548f {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.footer-gas-0243.fn-active-61cc .old-548f {
    max-height: 1000px;
}

.old-548f p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.caption_thick_df4b {
    padding: var(--section-padding);
}

.wrapper-d264 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.photo-huge-45ce {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.shadow_bright_0885 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shadow_bright_0885 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.small_b001 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.block-white-6bac {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer_f761 {
    font-size: 2rem;
}

.panel-36c3 {
    color: var(--text-white);
    margin: 0;
}

.border_0441 {
    list-style: none;
    padding: 0;
}

.border_0441 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.border_0441 li:last-child {
    border-bottom: none;
}

.nav-west-575d {
    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);
}

.nav-west-575d p {
    color: var(--success-color);
    margin: 0;
}

.tooltip_9fab {
    margin-top: 3rem;
}

.disabled_895f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.heading-inner-d6e5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .heading-inner-d6e5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.plasma_44cb {
    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);
}

.detail_3f96 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.plasma_44cb p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.clean_8e6a {
    padding: var(--section-padding);
}

.preview_easy_4932 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .preview_easy_4932 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.notice-ae7b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.notice-ae7b:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.purple-9cc1 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.caption-lite-9e66 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.focus-hovered-c710 {
    flex: 1;
}

.alert-down-150a {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.preview-old-f973 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.content-c21f {
    color: var(--text-gray);
    line-height: 1.6;
}

.text_5153 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.text_5153:last-child {
    border-bottom: none;
}

/* Comparison Section */
.modal-inner-448f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.accent_3481 {
    padding: var(--section-padding);
}

.logo_last_360d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.row-small-a786 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .row-small-a786 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wide_c243 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.status-9f08, .cold-f1f7, .thumbnail-e432 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.thumbnail-e432 {
    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 */
.caption-upper-f476 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.accordion-white-0295 {
    margin: 2rem 0;
}

.main-tiny-af1d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.filter-66f5 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.breadcrumb-1f1b {
    list-style: none;
    padding: 0;
}

.breadcrumb-1f1b 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;
}

.breadcrumb-1f1b li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.breadcrumb-1f1b li:last-child {
    border-bottom: none;
}

.slider-west-e516 {
    text-align: center;
    margin-top: 2rem;
}

.copper_bd9f {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.fast_89fb {
    padding: var(--section-padding);
}

.slider_iron_d389 {
    margin: 2rem 0;
}

.menu_basic_269c {
    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) {
    .menu_basic_269c {
        flex-direction: column;
        align-items: flex-start;
    }
}

.menu_basic_269c:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.icon_old_5cbb {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.video_9544 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.link-gas-9009 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.gradient-smooth-0cad {
    flex: 1;
}

.up-9d52 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.center_f68c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.slider-1af6 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.background-f707 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .background-f707 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.article_light_5b37 {
    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);
}

.article_light_5b37:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.article_light_5b37 .form_black_9289 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.article_light_5b37 .title_dim_fb40 {
    color: var(--text-gray);
    font-size: 1rem;
}

.short-64be {
    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);
}

.clean-2f0c {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.clean-2f0c strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.copper_5d04 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .copper_5d04 {
        grid-template-columns: 1fr 1fr;
    }
}

.tertiary-middle-57e8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.over_c465 {
    margin-bottom: 1.5rem;
}

.over_c465 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.over_c465 input,
.over_c465 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;
}

.over_c465 input:focus,
.over_c465 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.preview_3386 {
    width: 100%;
    margin-top: 1rem;
}

.silver-65bd {
    display: flex;
    align-items: center;
}

.medium-711f {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.caption_cad6 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.disabled_fixed_44c8 {
    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;
}

.text-2844 {
    color: var(--text-gray);
}

.search_22f0 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.over-0726 {
    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);
}

.over-0726 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.pattern_outer_d068 {
    margin-top: 3rem;
}

.active-fast-10c6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.hidden_silver_0d33 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.panel_1af3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.pattern-3f65 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pattern-3f65:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.paragraph_e21a {
    padding: var(--section-padding);
}

.next-7244 {
    margin: 2rem 0;
}

.highlight_wood_0108 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.primary_huge_bc97 {
    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;
}

.primary_huge_bc97:hover, .primary_huge_bc97.fn-active-61cc {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.medium-982e {
    display: none;
}

.medium-982e.fn-active-61cc {
    display: block;
}

.heading-up-6c12 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shadow-5c1c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.wide_0e2a h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.wide_0e2a ul {
    list-style: none;
    padding: 0;
}

.wide_0e2a ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.wide_0e2a ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.outline-thick-0f29 {
    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 */
.backdrop-6c02 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.glass-3619 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.preview-next-e1ba {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter_fixed_1e9e {
    color: var(--accent-color);
    margin: 0;
}

.iron-a10d {
    display: flex;
    gap: 1.5rem;
}

.over-47a4 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.purple-940d {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.huge-4660 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.huge-4660.top-e2fc {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.huge-4660.paragraph-2d71 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.huge-4660.advanced_9e79 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.solid-1380 {
    margin-top: 2rem;
}

.stale-52de {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.backdrop-motion-9408 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .backdrop-motion-9408 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.content_plasma_a378 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.alert-8874 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.dirty-4660 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.filter-new-e6fb {
    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 */
.avatar-e47f {
    padding: var(--section-padding);
}

.row-7150 {
    margin: 2rem 0;
}

.media_a9e4 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.south_7a00 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.white-33b2 {
    list-style: none;
    padding: 0;
}

.white-33b2 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;
}

.white-33b2 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.white-33b2 li:last-child {
    border-bottom: none;
}

.link-40a4 {
    margin: 2rem 0;
}

.cold_ecce {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.copper_74d2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .copper_74d2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tiny_e75c {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wrapper_8a90 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.column-hard-fa09 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.pattern-cold-67a1 {
    margin-top: 2rem;
}

.pro_4aaa {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.warm_969d {
    list-style: none;
    padding: 0;
}

.hard-a920 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.hard-a920 a {
    color: var(--accent-color);
    text-decoration: none;
}

.hard-a920 a:hover {
    text-decoration: underline;
}

.bronze_0935 {
    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-green-d332 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.out_eb95 {
    margin: 2rem 0;
}

.message_d8a8 {
    margin-bottom: 3rem;
}

.message_d8a8 .filter-66f5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.solid_b968 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.summary_439b {
    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);
}

.summary_439b:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.next-a429 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .next-a429 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature_684b {
    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 */
.media-wood-df29 {
    padding: var(--section-padding);
}

.row-white-c943 {
    margin: 2rem 0;
}

.nav-glass-b479 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.tooltip-f733 {
    overflow-x: auto;
    margin: 2rem 0;
}

.article_blue_7155 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.light-c7dc {
    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;
}

.preview_7bc7 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.paper-2d25 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .paper-2d25 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.list_ef1d {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.list_ef1d .info_c8cd {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.list_ef1d .red_c113 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.icon-short-dbc8 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.footer_yellow_a686 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.filter-tall-be76 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .filter-tall-be76 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.block-static-43a9 {
    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;
}

.block-static-43a9:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.feature_bottom_cc43 {
    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);
}

.current-40cc {
    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;
}

.widget_09db {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.pro_b059 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.hovered-80df {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.photo_iron_d19b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.media_9c55 {
    color: var(--text-white);
    font-weight: 600;
}

.action_59e7 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.text_2451 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.text_2451 .shade_da46 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.media-cdc0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .media-cdc0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.down_6729 {
    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);
}

.down_6729:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.down_6729 .form_black_9289 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.down_6729 .title_dim_fb40 {
    color: var(--text-gray);
    font-size: 1rem;
}

.picture_glass_6831 {
    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);
}

.main-e0d7 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.main-e0d7 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.list-huge-68f1 {
    margin: 2rem 0;
}

.element_d687 {
    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);
}

.element_d687:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.card-b6a9 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.label_tall_4cb1 {
    flex: 1;
}

.copper_828f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hidden_top_4031 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.progress-clean-338e {
    margin: 2rem 0;
}

.border_1fbb {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.border_1fbb .red_c113 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.border_1fbb .card-49d5 {
    color: var(--text-gray);
    margin: 0;
}

.layout-8256 {
    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);
}

.layout-8256 .notification-wide-cfda {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.icon-short-dbc8 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.feature-stone-f6f0 {
    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;
}

.active-left-f93e {
    flex: 1;
}

.tertiary-in-8fe8 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.button-b90e {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.sidebar_gold_2098 {
    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;
}

.hovered-ec96 {
    flex: 1;
}

.iron_81e8 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.wrapper-aa81 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.detail-5548 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.preview_f174 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.wrapper_f1be {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.wrapper_f1be .shade_da46 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.hidden_b63f {
    margin-top: 2rem;
}

.hidden_b63f .disabled_895f {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.form-basic-2096 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hot-86cd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .hot-86cd {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hot-86cd .form_8a69 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.status-200e {
    margin: 2rem 0;
}

.gradient_19cb {
    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 */
.hovered_2d4c {
    padding: var(--section-padding);
}

.gas_fb90 {
    margin-top: 1rem;
}

.alert_06cb {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.alert_06cb li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.alert_06cb li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.accent-2284 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.accent-gas-a2cf {
    margin: 2rem 0;
}

.notification_6d24 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.popup-9af7 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.center_c235 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.feature-9fc2 {
    margin: 2rem 0;
}

.hidden_194c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.hidden_194c .filter-66f5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.block-down-e71e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .block-down-e71e {
        grid-template-columns: repeat(2, 1fr);
    }
}

.container_9df7 {
    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);
}

.primary-lower-314b {
    color: var(--text-white);
    font-weight: 600;
}

.media_black_fdfc {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.heading-black-81ac {
    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);
}

.heading-black-81ac p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.brown-b072 {
    padding: var(--section-padding);
}

.button_cool_a5f1 {
    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;
}

.button_cool_a5f1:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.simple-ecfd {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.simple-ecfd .detail_3f96 {
    font-size: 2rem;
    flex-shrink: 0;
}

.simple-ecfd .popup_aede {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.logo-46cc {
    flex: 1;
}

.east_ea90 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.gallery_adc3 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gallery_adc3 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.gallery_adc3 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.white-f7d9 {
    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);
}

.white-f7d9 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.white-f7d9 strong {
    color: var(--warning-color);
}

/* Slots Section */
.complex_5991 {
    padding: var(--section-padding);
}

.label-purple-358a {
    margin: 2rem 0;
}

/* Table Games Section */
.aside_f0d1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.gradient-down-0cc6 {
    margin: 2rem 0;
}

.disabled-e0a2 {
    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);
}

.disabled-e0a2:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.disabled-e0a2 .badge_slow_4339 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.disabled-e0a2 .gallery-f874 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.active-east-8da8 {
    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);
}

.active-east-8da8 .notification-wide-cfda {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.surface_old_7e82 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.wide_4430 {
    margin: 2rem 0;
}

.black_f74f {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.narrow-4741 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.sort-selected-021b {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.frame-basic-5c8d {
    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);
}

.frame-basic-5c8d:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.frame-basic-5c8d.fn-active-61cc {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.under_a1d6 {
    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);
}

.shade-fixed-4c78 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.shade-fixed-4c78 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.dynamic-ac95 {
    padding: var(--section-padding);
}

.popup_clean_d61f {
    margin: 2rem 0;
}

.photo-dirty-4f33 {
    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);
}

.photo-dirty-4f33:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .photo-dirty-4f33 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.media-2980 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.clean_e5bb {
    flex: 1;
}

.huge_37f5 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.dropdown_down_f225 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.media-red-f951 {
    padding: 0.375rem 0.875rem;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    color: var(--primary-bg);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.chip-2226 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.thick-d94a {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.feature-top-f871 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.primary_3b62 {
    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;
}

.primary_3b62:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.container_7c2a {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.search_lite_997b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.search_lite_997b strong {
    color: var(--accent-color);
}

/* New Games Section */
.table-85b8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.static-12da {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .static-12da {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .static-12da {
        grid-template-columns: repeat(4, 1fr);
    }
}

.video_8a3e {
    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;
}

.video_8a3e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.gradient-e1cc {
    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;
}

.stale-a9f0 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.pagination_medium_5774 {
    font-size: 2rem;
}

.description-f2a5 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.texture_d8a1 {
    flex: 1;
}

.banner-faea {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.progress_dim_15d1 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.breadcrumb_c82a {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.pro-f857 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.outline-2f3c {
    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;
}

.frame-under-f9f9 {
    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;
}

.frame-under-f9f9:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.module-1b59 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.solid_28b0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.frame-83f3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .frame-83f3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.outline-lower-ba4b {
    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);
}

.dropdown_a7bd {
    color: var(--text-white);
    font-weight: 600;
}

.under-af1d {
    color: var(--accent-color);
    font-weight: 600;
}

.icon_basic_dec6 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.icon_basic_dec6 strong {
    color: var(--accent-color);
}

/* Security Section */
.gallery-down-668b {
    padding: var(--section-padding);
}

/* Benefits Section */
.header_f2d8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.header-bottom-7471 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.warm-8182 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tall_6cb3 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.up_f782 {
    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) {
    .up_f782 {
        flex-direction: column;
        gap: 1rem;
    }
}

.up_f782:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.up_f782 .sidebar_gold_2098 {
    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;
}

.up_f782 .hovered-ec96 {
    flex: 1;
}

.up_f782 .iron_81e8 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.up_f782 .wrapper-aa81 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.filter_ab20 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.filter_ab20 .in_40f9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.filter_ab20 .tiny-56e4 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter_ab20 .tiny-56e4 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.filter_ab20 .tiny-56e4 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.center-c4c8 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.pattern-b752 {
    padding: var(--section-padding);
}

.column-current-e5ba {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .column-current-e5ba {
        grid-template-columns: repeat(3, 1fr);
    }
}

.motion-e87e {
    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-e87e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.motion-e87e .block-light-d30b {
    font-size: 2rem;
    flex-shrink: 0;
}

.motion-e87e .heading_a024 {
    flex: 1;
}

.motion-e87e .text-5cb9 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.motion-e87e .modal_6e68 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.table_f4df {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.table_f4df .video_3591 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.table_f4df .dropdown-68c2 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.table_f4df .dropdown-68c2 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);
}

.table_f4df .dropdown-68c2 li:last-child {
    border-bottom: none;
}

.table_f4df .dropdown-68c2 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;
}

.table_f4df .dropdown-68c2 li strong {
    color: var(--text-white);
}

.form-8a83 {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.form-8a83 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.form-8a83 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.hard_5116 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.filter-liquid-4b3e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .filter-liquid-4b3e {
        grid-template-columns: repeat(2, 1fr);
    }
}

.surface_e2fd {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.surface_e2fd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.glass_ab5a {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.simple-8b6b {
    font-size: 2rem;
}

.focus-green-38ec {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.tabs_current_5e61 {
    flex: 1;
}

.large_eafa {
    list-style: none;
    padding: 0;
    margin: 0;
}

.large_eafa li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.large_eafa li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.hard-eb79 {
    margin-top: 3rem;
}

.media_a9e4 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.south_7a00 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.white-33b2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.white-33b2 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.white-33b2 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.white-33b2 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.feature_8bea {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.highlight-c99d {
    margin: 2rem 0;
}

.wide-e0e5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.wide-e0e5 .filter-66f5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.label_right_1d4c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .label_right_1d4c {
        grid-template-columns: repeat(2, 1fr);
    }
}

.focused_7d04 {
    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);
}

.focused_7d04:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.dark-98fb {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.button_d944 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.yellow-227b {
    padding: var(--section-padding);
}

.slider-pink-b6fc {
    margin: 2rem 0;
}

.yellow-e43f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .yellow-e43f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .yellow-e43f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.shade-4c7d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.shade-4c7d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.border-mini-b29f {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.tooltip_112f {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.lower_b4af {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.lower_b4af.item_5d90 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.card-west-983c {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.wrapper_gold_4f88 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.element_prev_d86e {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.primary_568e {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.logo-5933 {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.logo-5933 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.logo-5933 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.alert-b8f7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.section-west-5bf8 {
    margin: 2rem 0;
}

.image-in-e890 {
    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) {
    .image-in-e890 {
        flex-direction: column;
        gap: 1rem;
    }
}

.image-in-e890:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.image-in-e890::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);
}

.item-solid-f9f6 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.thick-907f {
    flex: 1;
}

.chip-d684 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.table_cd8c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table_cd8c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.new_f584 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.block-b571 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.aside_f4bc {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .aside_f4bc {
        grid-template-columns: repeat(3, 1fr);
    }
}

.liquid_0af8 {
    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);
}

.paragraph_f4e8 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.green_5a3c {
    flex: 1;
}

.media_ec86 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.tag_e5e3 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.border-pressed-e0b4 {
    margin-top: 2rem;
    text-align: center;
}

.media_current_3895 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.media_current_3895 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.summary_1758 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .summary_1758 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tall_461f {
    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);
}

.tall_461f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.tall_461f .carousel_9ba8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tall_461f .focused-0867 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.tall_461f .accordion_7ecb {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.tall_461f .sort_1462 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.short-b584 {
    padding: var(--section-padding);
}

.inner_7665 .secondary_80b0 {
    flex: 1;
}

/* Promo Calendar Section */
.avatar-6572 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.basic-fe9c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .basic-fe9c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.form_hard_8ceb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.module_3cd6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.avatar_bronze_8621 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight_first_1772 {
    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);
}

.border-glass-67e3 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.tooltip-1f74 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.sort_b4ff {
    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);
}

.sort_b4ff p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.sort_b4ff strong {
    color: var(--accent-color);
}

/* Requirements Section */
.pro-b811 {
    padding: var(--section-padding);
}

.clean-240a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .clean-240a {
        grid-template-columns: repeat(2, 1fr);
    }
}

.surface_right_bcd9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.element_f99a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.progress-lower-51b1 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.progress-lower-51b1 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.grid_ce0a {
    margin-top: 3rem;
}

.grid_ce0a .media_a9e4 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.grid_ce0a .south_7a00 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.grid_ce0a .white-33b2 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.grid_ce0a .white-33b2 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.grid_ce0a .white-33b2 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.grid_ce0a .white-33b2 li strong {
    color: var(--warning-color);
}

.sort_43a4 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.sort_43a4 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.tooltip_purple_d99d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.white_eeec {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .white_eeec {
        grid-template-columns: repeat(3, 1fr);
    }
}

.cold_b026 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.cold_b026 .filter-66f5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.surface-cool-2f89 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.west-5850 {
    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);
}

.west-5850:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.info_fc30 {
    font-size: 2rem;
    flex-shrink: 0;
}

.east-7f41 {
    flex: 1;
}

.preview-4383 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.silver_0d6e {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.fresh-c34d {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.hover-blue-25ed {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.current_4d2e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .current_4d2e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.large_ec32 {
    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);
}

.large_ec32:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.texture_b8ec {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.blue-78a1 {
    color: var(--text-gray);
    font-size: 1rem;
}

.clean-2f0c {
    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);
}

.dropdown-42fa {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.dropdown-42fa strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.short_c081 { 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; }
.alert-62e7, .card_dynamic_2dc0 { max-width:100%; height:auto; }

.link_white_6198, .background_4257, .module_gold_a482 { white-space:normal; }

.carousel-daa8,
.image-dark-013d,
.article_lower_d98e,
.summary_1758,
.progress-clean-338e,
.medium-f71e {
  flex-wrap:wrap;
}

[class*="grid"],
.current_4d2e,
.yellow-e43f,
.frame_cold_62f0 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.notice-2a2a img,
.image-dark-013d img,
.input-dark-716f img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.column-green-0dfd, .east_8178,
.overlay-213d, .fast_1f1b {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.widget_8aa6 { width:100%; overflow-x:auto; }
.widget_8aa6 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.hidden_e0f9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .hidden_e0f9 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.inner-a145 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.chip-next-a97b,
.shade_a32c,
.banner_inner_10c6,
.breadcrumb-yellow-5d96,
.background-f707,
.current_4d2e,
.yellow-e43f,
.frame_cold_62f0,
.preview-6eb3,
.popup_clean_d61f,
.hidden_e0f9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .chip-next-a97b,
  .shade_a32c,
  .banner_inner_10c6,
  .breadcrumb-yellow-5d96,
  .background-f707,
  .current_4d2e,
  .yellow-e43f,
  .frame_cold_62f0,
  .preview-6eb3,
  .popup_clean_d61f,
  .hidden_e0f9 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.black-e94f,
.article_light_5b37,
.large_ec32,
.prev-8de1,
.shade-4c7d,
.column-65b7,
.photo-dirty-4f33,
.inner-a145 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.header-tiny-2174,
.label-a03d,
.outline-d8cf {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.header-tiny-2174 > *,
.label-a03d > *,
.outline-d8cf > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: aa8f */
.promo-block-d6 {
  padding: 0.2rem;
  font-size: 11px;
  line-height: 1.3;
}
