/* {$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;
}

.block-mini-e977 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.current-555f {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .current-555f {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .current-555f {
        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 */
.notice-93a1 {
    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);
}

.dim-88d8 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .dim-88d8 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .hot-9080 {
        grid-column: 1;
    }
    
    .wrapper_9c55 {
        grid-column: 2;
    }
    
    .left_676f {
        grid-column: 3;
    }
}

.hot-9080 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.hot-9080:hover img {
    transform: scale(1.05);
}

/* Navigation */
.outline_active_2f14 {
    display: none;
}

@media (min-width: 1024px) {
    .outline_active_2f14 {
        display: block;
    }
}

/* Grouped Navigation */
.caption-36f2 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.prev_8f6d {
    position: relative;
}

.sidebar-plasma-86aa {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.prev_8f6d .popup-dim-b1b3 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.popup-dim-b1b3 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.gallery_in_87b9 {
    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;
}

.gallery_in_87b9:hover,
.gallery_in_87b9.fn-active-550a {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.media-3bd5 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .media-3bd5 {
        display: flex;
    }
}

/* Mobile Register Button */
.wrapper_9c55 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .wrapper_9c55 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.large_b0a2 {
    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;
}

.large_b0a2::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 */
.left_676f {
    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) {
    .left_676f {
        display: none;
    }
}

.left_676f span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.left_676f.fn-active-550a span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.left_676f.fn-active-550a span:nth-child(2) {
    opacity: 0;
}

.left_676f.fn-active-550a span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.large_684a {
    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;
}

.large_684a.fn-active-550a {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.selected-27aa {
    overflow: hidden;
}

.text-6d34 {
    list-style: none;
    padding: 0.75rem 0;
}

.disabled-paper-3d3f {
    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;
}

.disabled-paper-3d3f:hover,
.disabled-paper-3d3f.fn-active-550a {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.disabled-paper-3d3f.frame-wide-1386 {
    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;
}

.disabled-paper-3d3f.frame-wide-1386::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 */
.dropdown-stale-c8a6 {
    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;
}

.overlay-light-f042 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.overlay-light-f042:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.first-2bb2 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.first-2bb2:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.pink-5dae {
    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;
}

.pink-5dae:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.surface-center-1448 {
    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;
}

.cool-4ca7 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.cool-4ca7:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.next-15a0 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.next-15a0:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.form-smooth-31d5 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.form-smooth-31d5: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);
}

.carousel-bottom-ab4f {
    font-size: 1em;
    font-weight: 700;
}

.column-8bf0 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.dark-1ea1 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.dark-1ea1::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;
}

.thumbnail-pro-0d80 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .thumbnail-pro-0d80 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.active_dfa8 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.sidebar_068d {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.avatar-7a4c {
    margin-bottom: 2rem;
}

.shadow_warm_f310 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .shadow_warm_f310 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.backdrop-7679 {
    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);
}

.module_6d8e {
    font-size: 1.5rem;
}

.block-outer-62ea {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.mask-acff {
    display: flex;
    justify-content: center;
    align-items: center;
}

.upper-426a {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.upper-426a:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.form-7d2d {
    text-align: center;
    margin-bottom: 3rem;
}

.column_1bfc {
    margin-bottom: 1rem;
}

.hidden-acba {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.pagination_bronze_e11e {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .pagination_bronze_e11e {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .pagination_bronze_e11e.focus_dynamic_9e49 {
        direction: rtl;
    }
    
    .pagination_bronze_e11e.focus_dynamic_9e49 > * {
        direction: ltr;
    }
}

.nav-fb53 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.nav-fb53:first-child {
    margin-top: 0;
}

.icon-75f8 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.section_39e6 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.section_39e6:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.status_complex_9e7d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .status_complex_9e7d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.box_solid_eede {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.gradient-tall-fd21 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.heading_cool_f075 {
    list-style: none;
}

.heading_cool_f075 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.heading_cool_f075 li:last-child {
    border-bottom: none;
}

/* Games Features */
.content_bottom_8b8d {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.grid-solid-67da {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.thumbnail_short_2ff5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.pink-e61a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.background-eb4d {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.hard_2e99 {
    margin: 2rem 0;
}

.south_7e51 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.table-next-ac8e {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.highlight_c179 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.caption_e71d {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.bottom_19ef {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .bottom_19ef {
        grid-template-columns: repeat(3, 1fr);
    }
}

.slider-34cf {
    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-34cf:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.wrapper-b9e8 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.lower_d42e {
    font-size: 1.5rem;
}

.center_f587 {
    color: var(--accent-color);
    margin: 0;
}

.block-d6a9 {
    list-style: none;
}

.block-d6a9 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.block-d6a9 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.texture-cca2 {
    margin: 2rem 0;
}

.text_5622 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.preview-hard-e213 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .preview-hard-e213 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.current-fdb3 {
    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);
}

.first_7e56 {
    font-size: 1.25rem;
}

.pressed_5c86 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.gold-9e2d,
.dropdown-497b {
    text-align: center;
    margin: 2rem 0;
}

.badge_large_cf74,
.sidebar_large_fdb8 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.slow_026f {
    margin: 2rem 0;
    text-align: center;
}

.hard-e9c4 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hard-e9c4::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;
}

.disabled_inner_1a55 {
    position: relative;
    z-index: 1;
}

.overlay_a423 {
    margin-bottom: 1rem;
}

.notice_2e60 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tall_a6b7 {
    margin-bottom: 3rem;
}

.media_406d {
    margin-top: 3rem;
}

.accordion-hard-f2e2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .accordion-hard-f2e2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accordion-hard-f2e2 .backdrop-7679 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.bronze_de8b {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tooltip-action-38f3 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.gradient-c83d {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.red_75a0 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .red_75a0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .red_75a0 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.surface_stale_d3b6 {
    margin-bottom: 1rem;
}

.top_edaf img {
    margin-bottom: 1rem;
}

.notification-west-643a {
    color: var(--text-gray);
    line-height: 1.6;
}

.card-67a4 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.tabs-0a23 {
    list-style: none;
}

.tabs-0a23 li {
    margin-bottom: 0.5rem;
}

.tabs-0a23 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.tabs-0a23 a:hover {
    color: var(--accent-color);
}

.secondary-last-f2c7 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.modal_0484 {
    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);
}

.modal_0484:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.banner-in-e7bf {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.banner-in-e7bf p {
    margin-bottom: 0.25rem;
}

.pressed-0d9d {
    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) {
    .pressed-0d9d {
        flex-direction: row;
    }
}

.item_yellow_e36c {
    text-align: center;
}

@media (min-width: 768px) {
    .item_yellow_e36c {
        text-align: left;
    }
}

.item_yellow_e36c p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.brown-12e9 {
    font-size: 0.75rem !important;
}

.dropdown-d76b {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.fluid-04cb {
    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);
    }
}

.shade-eb57 {
    animation: fadeInUp 0.6s ease-out;
}

.tertiary-e777 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.current-417d {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .current-417d {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.hidden-b093 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hidden-b093 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stone_db7d {
    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);
}

.stone_db7d .thumbnail_short_2ff5 {
    font-size: 1.25rem;
}

.stone_db7d .cold_e4d5 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.rough-f645 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .rough-f645 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.accent-f0b2 {
    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);
}

.accent-f0b2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.over_7c0e {
    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);
}

.frame-pink-4bfb {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.slider-3be0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hard_efb2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.narrow-c9ce {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.narrow-c9ce .pink-e61a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.narrow-c9ce .background-eb4d {
    color: var(--text-gray);
    line-height: 1.6;
}

.notice_59e6 {
    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);
}

.input-32a1 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.input-32a1 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.input-32a1 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.static-0247 {
    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);
}

.disabled_420e {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.plasma_493a {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.plasma_493a label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.plasma_493a 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);
}

.plasma_493a input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.plasma_493a input::placeholder {
    color: var(--text-muted);
}

.pro-45c1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.pressed_a790 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.pressed_a790 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.warm-3dbd {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.warm-3dbd:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.preview-hard-e213 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .preview-hard-e213 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.current-fdb3 {
    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);
}

.current-fdb3 .first_7e56 {
    font-size: 1.25rem;
}

.current-fdb3 .pressed_5c86 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.label_medium_a47c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.avatar-9aac {
    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);
}

.avatar-9aac .thumbnail_short_2ff5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.avatar-9aac .pink-e61a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.avatar-9aac .background-eb4d {
    color: var(--text-gray);
    line-height: 1.6;
}

.hard-9f38 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.secondary_10a8 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.secondary_10a8 .photo_182e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.secondary_10a8 .search-f604 {
    color: var(--text-gray);
    line-height: 1.6;
}

.primary_bright_58f6 {
    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);
}

.component-middle-793f {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .component-middle-793f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.thick-a503 {
    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);
}

.thick-a503:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.chip-thick-37a4 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.summary_hot_8a0d {
    flex: 1;
}

.avatar-short-dbdc {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.header-cool-2cf3 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.avatar_tiny_4e3a {
    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);
}

.avatar_tiny_4e3a:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.focus-6fbd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .focus-6fbd {
        grid-template-columns: repeat(4, 1fr);
    }
}

.advanced_736a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.advanced_736a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tiny-7160 {
    font-size: 2rem;
    flex-shrink: 0;
}

.green-869f {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.table_9a67 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.hard_5273 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.disabled_south_9174 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.short-3ab4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.secondary_83f8 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.secondary_83f8 .footer_aa20 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.secondary_83f8 .description_fixed_ef2f {
    color: var(--text-gray);
    line-height: 1.6;
}

.menu-iron-7ac5 {
    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);
}

.plasma_f964 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.outline_down_e568 {
    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);
}

.outline_down_e568 .thumbnail_short_2ff5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.outline_down_e568 .pink-e61a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.outline_down_e568 .background-eb4d {
    color: var(--text-gray);
    line-height: 1.6;
}

.hidden-50da {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hidden-50da {
        grid-template-columns: repeat(3, 1fr);
    }
}

.caption-rough-9407 {
    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);
}

.caption-rough-9407:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.shadow_pro_0fd5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shadow_pro_0fd5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.aside_lower_e3b1 {
    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);
}

.aside_lower_e3b1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gradient-medium-7607 {
    font-size: 2rem;
    flex-shrink: 0;
}

.popup-simple-d027 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.table-next-ac8e {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.bronze-3d9f {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.notification-a968 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.fixed-8cb1 {
    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);
}

.fixed-8cb1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.blue-0504 {
    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);
}

.smooth_4432 {
    flex: 1;
}

.box_wide_3734 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.border_right_415a {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.warm_f33a {
    color: var(--text-gray);
    line-height: 1.6;
}

.menu-tiny-2608 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dropdown_0201 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dropdown_0201 .photo_182e {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.dropdown_0201 .search-f604 {
    color: var(--text-gray);
    line-height: 1.6;
}

.dropdown-497b {
    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);
}

.label-gas-ecc2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .label-gas-ecc2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.aside-2ce8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .aside-2ce8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.status_mini_69a5 {
    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);
}

.status_mini_69a5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.module-outer-53ca {
    font-size: 2rem;
    flex-shrink: 0;
}

.badge_6695 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.widget-light-b031 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.focus_dynamic_cccd {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.hard-57c0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hard-cbb0 {
    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);
}

.hidden-afc5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.overlay-simple-acce {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.wide_5c5f {
    color: var(--text-gray);
    line-height: 1.6;
}

.plasma_f964 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.outline_down_e568 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.outline_down_e568 .pink-e61a {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.outline_down_e568 .background-eb4d {
    color: var(--text-gray);
    line-height: 1.6;
}

.heading-under-b83a {
    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);
}

.glass-bdf5 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .glass-bdf5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .glass-bdf5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.list_stale_a5ed {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.list_stale_a5ed:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.basic_c979 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.content-bottom-aaa4 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.static-302a {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.panel-hot-4bce {
    padding: 1.5rem;
}

.next_902b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.frame_pink_e95c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.frame_pink_e95c 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;
}

.frame_pink_e95c li:last-child {
    border-bottom: none;
}

.frame_pink_e95c li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.small_ff9f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .small_ff9f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.detail_west_bafe {
    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);
}

.detail_west_bafe:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.liquid_3324 {
    font-size: 2rem;
    flex-shrink: 0;
}

.box-3f82 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.inner_1e68 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.search_hard_9e66 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.yellow_474f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wood-11e6 {
    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);
}

.huge_dc23 {
    font-size: 2rem;
    flex-shrink: 0;
}

.right-37fd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.sidebar_purple_2107 {
    color: var(--text-gray);
    line-height: 1.6;
}

.brown_106c {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.item-a17e {
    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);
}

.shade-a63c {
    text-align: center;
}

.sidebar-5211 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.box_ddb1 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.breadcrumb-north-9bed {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.panel-center-9443 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.panel-center-9443 .pink-e61a {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.panel-center-9443 .background-eb4d {
    color: var(--text-gray);
    line-height: 1.6;
}

.caption-north-c35d {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .caption-north-c35d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .caption-north-c35d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.detail_5d95 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.detail_5d95:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.motion-044c {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.tertiary_2a02 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.pink-e61a {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.bright-d498 {
    padding: 1.5rem;
}

.background-eb4d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.outer_6d6f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.outer_6d6f 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;
}

.outer_6d6f li:last-child {
    border-bottom: none;
}

.outer_6d6f li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.widget-6208 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.dim-4361 {
    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);
}

.dim-4361:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.dropdown_next_c8ac {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.current_bf7d {
    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);
}

.over_7c0e {
    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;
}

.frame-pink-4bfb {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.slider-3be0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.solid-61bf {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.silver_b773 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.image_a12d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.top_4fe1 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.article-2685 {
    display: flex;
    gap: 1rem;
}

.article-2685 .shade-fast-a315 {
    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;
}

.picture-aab8 {
    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);
}

.search_white_7abd {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.sidebar-80a5 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-80a5 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;
}

.sidebar-80a5 li:last-child {
    border-bottom: none;
}

.sidebar-80a5 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.modal-a706 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .modal-a706 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .modal-a706 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.preview_pink_6d2a {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.preview_pink_6d2a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.bright-fba7 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.row-gas-9b1f {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.footer_aa20 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.lite_5bba {
    font-size: 1rem;
}

.element-a290 {
    padding: 1.5rem;
}

.description_fixed_ef2f {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.basic_7ffc {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.basic_7ffc .shade-a63c {
    text-align: center;
}

.basic_7ffc .box_ddb1 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.basic_7ffc .avatar_inner_e710 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.article_liquid_781b {
    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);
}

.article_liquid_781b:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.upper-a166 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .upper-a166 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tooltip-bottom-e0d4 {
    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);
}

.tooltip-bottom-e0d4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.fixed_da09 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dim_0324 {
    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);
}

.surface_4c53 {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-fast-8342 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.active-black-17d9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.video_c950 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.layout_89fc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.accordion_advanced_d3d3 {
    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);
}

.table-dynamic-02f5 {
    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;
}

.table-dynamic-02f5.gold-0526 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.table-dynamic-02f5.media-c213 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.table-dynamic-02f5.shade-cefa {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.table-dynamic-02f5.block_new_2fa3 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.table-dynamic-02f5.warm_93e6 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.media-455f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.outline_glass_c1ee {
    color: var(--text-gray);
    line-height: 1.6;
}

.item_e328 {
    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);
}

.focus_102a {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.hard-9f38 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hard-9f38 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;
}

.hard-9f38 li:last-child {
    border-bottom: none;
}

.hard-9f38 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.picture-dd60 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .picture-dd60 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .picture-dd60 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stale_0465 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.stale_0465:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.stale_0465.border_left_5992 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .stale_0465.border_left_5992 {
        grid-column: span 3;
    }
}

.fast-0fe4 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.stale_0465.border_left_5992 .fast-0fe4 {
    background: rgba(6, 182, 212, 0.1);
}

.background-bright-e9a4 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.title-liquid-5cab {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.stale_0465.border_left_5992 .title-liquid-5cab {
    color: var(--info-color);
}

.center_064b {
    padding: 1.5rem;
    text-align: center;
}

.accordion-short-0226 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.stale_0465.border_left_5992 .accordion-short-0226 {
    color: var(--info-color);
}

.container-hard-e728 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.icon-8c81 {
    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 */
.link-cool-7d30 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .link-cool-7d30 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.message-058a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.message-058a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.wrapper-d9bf {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.avatar-9aac {
    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);
}

.first_7e56 {
    font-size: 2rem;
    flex-shrink: 0;
}

.label_d58a {
    flex: 1;
}

.text_5622 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.aside-east-85c7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.disabled_7f68 {
    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);
}

.feature_upper_5cbe {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.column_2c2d {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.fluid-04cb {
    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);
}

.hover_3a02 {
  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);
}

.hover_3a02 .shade-a63c {
    text-align: center;
}

.hover_3a02 .sidebar-5211 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.hover_3a02 .box_ddb1 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.frame_5f43 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.preview-active-1e02 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.header_thick_d538 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.pro_1591 {
    color: var(--text-gray);
    line-height: 1.6;
}

.selected_522d {
    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);
}

.pro-330b {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.active_c545 {
    color: var(--text-gray);
    line-height: 1.6;
}

.secondary_4701 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .secondary_4701 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .secondary_4701 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.status-3ddc {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.status-3ddc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.huge-cacb {
    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);
}

.nav-94c1 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.list_746c {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.basic_a3ce {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.basic_a3ce.active_5371 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.basic_a3ce.item-stale-82da {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.basic_a3ce.modal_b78e {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.carousel-dark-4ee6 {
    padding: 1.5rem;
    text-align: center;
}

.sort-8dc1 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.button_south_4351 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.button_south_4351 .sort_41c8 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.gold_8f25 {
    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);
}

.gold_8f25:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.media_303a {
  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);
}

.widget_0707 {
    text-align: center;
}

.widget_0707 .sidebar-5211 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.widget_0707 .box_ddb1 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.video-fluid-0106 { text-align: center; }
.detail-f516 { text-align: left; }
.background_ad68 { text-align: right; }

.card_459e { margin-bottom: 0; }
.content-current-c724 { margin-bottom: 0.5rem; }
.wrapper_white_eb78 { margin-bottom: 1rem; }
.box_active_1cc1 { margin-bottom: 1.5rem; }
.tag_basic_2df0 { margin-bottom: 2rem; }

.pagination_bottom_9378 { margin-top: 0; }
.component-56bf { margin-top: 0.5rem; }
.badge_2822 { margin-top: 1rem; }
.hero_c9e6 { margin-top: 1.5rem; }
.container_49da { margin-top: 2rem; }

.fn-hidden-550a { display: none; }
.fn-visible-550a { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .dark-1ea1 {
        padding: 6rem 0 3rem;
    }
    
    .thumbnail-pro-0d80 {
        text-align: center;
    }
    
    .pagination_bronze_e11e {
        text-align: center;
    }
    
    .shadow_warm_f310 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .notice-93a1,
    .large_684a,
    .hard-e9c4,
    .gradient-c83d {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .dark-1ea1 {
        background: none;
    }
}

/* Providers Section */
.backdrop-complex-9622 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.south_7b3c {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .south_7b3c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .south_7b3c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pattern_left_aafa {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.pattern_left_aafa:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.block_9def {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.list_green_ce95 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.backdrop-d285 {
    list-style: none;
    padding: 0;
}

.backdrop-d285 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.backdrop-d285 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.pattern_stone_fa38 {
    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);
}

.pattern_stone_fa38 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.article-18c9 {
    padding: var(--section-padding);
}

.first-e872 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .first-e872 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fluid_528d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.fluid_528d:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.carousel-center-9260 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.notification-pink-f311 {
    display: flex;
    flex-direction: column;
}

.table_191c {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.badge_hot_02f5 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.main-77ba {
    color: var(--accent-color);
}

.picture-next-e135 {
    font-size: 1.25rem;
}

.over-51db {
    margin-bottom: 1rem;
}

.over-51db p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.focus_clean_ad11 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.pattern-c3d5 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.shade-a63c {
    text-align: center;
}

.sidebar-5211 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.box_ddb1 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.disabled_8a46 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.feature_4349 {
    margin: 2rem 0;
}

.wrapper-bf9e {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.wrapper-bf9e .thumbnail_short_2ff5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.block-65c9 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.thumbnail-512b {
    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;
}

.thumbnail-512b:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.static_6038 {
    font-size: 2rem;
}

.pattern_complex_8c94 {
    display: flex;
    flex-direction: column;
}

.nav_d2ca {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.module_fluid_0e68 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.card_374e {
    padding: var(--section-padding);
}

.input_bottom_8df4 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .input_bottom_8df4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .input_bottom_8df4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.section_out_e6d4 {
    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);
}

.section_out_e6d4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.section_out_e6d4 .sidebar-5211 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.section_out_e6d4 .box_ddb1 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.section_out_e6d4 .mask_6905 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.widget_light_c860 {
    margin-top: 4rem;
}

.dropdown_cd4f {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.pagination_e6a7 {
    overflow-x: auto;
}

.description-south-91b4 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.description-south-91b4 thead {
    background: var(--accent-color);
}

.description-south-91b4 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.description-south-91b4 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.description-south-91b4 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.description-south-91b4 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.shade_057f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.alert-under-9c9d {
    max-width: 900px;
    margin: 0 auto;
}

.up-fa40 {
    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);
}

.up-fa40:hover {
    border-color: var(--accent-color);
}

.link_6c3c {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.link_6c3c h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.slider-6e10 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.up-fa40.fn-active-550a .slider-6e10 {
    transform: rotate(45deg);
}

.gradient_red_a9bb {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.up-fa40.fn-active-550a .gradient_red_a9bb {
    max-height: 1000px;
}

.gradient_red_a9bb p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.middle-6397 {
    padding: var(--section-padding);
}

.input-32a1 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.steel-bfe3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.article_e133 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .article_e133 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.lower_1e91 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.steel_30e8 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form_large_174c {
    font-size: 2rem;
}

.description_d8c3 {
    color: var(--text-white);
    margin: 0;
}

.in_5756 {
    list-style: none;
    padding: 0;
}

.in_5756 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.in_5756 li:last-child {
    border-bottom: none;
}

.tabs-basic-17f3 {
    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);
}

.tabs-basic-17f3 p {
    color: var(--success-color);
    margin: 0;
}

.content-hard-587d {
    margin-top: 3rem;
}

.search_white_7abd {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.orange_ba42 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .orange_ba42 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.slow_316e {
    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);
}

.message_cf18 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.slow_316e p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.out-2945 {
    padding: var(--section-padding);
}

.steel-b0aa {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .steel-b0aa {
        grid-template-columns: repeat(3, 1fr);
    }
}

.medium-0cc3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.medium-0cc3:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.blue_4929 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.breadcrumb-8017 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.progress-b52f {
    flex: 1;
}

.background_pro_54cf {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.outer_5089 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.button-static-a39b {
    color: var(--text-gray);
    line-height: 1.6;
}

.description_0453 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.description_0453:last-child {
    border-bottom: none;
}

/* Comparison Section */
.outline_d926 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.paragraph-9677 {
    padding: var(--section-padding);
}

.text-a77e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.card-90a5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .card-90a5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.picture_10ea {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hidden-dark-240b, .column_blue_18ce, .block-full-8fcf {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.block-full-8fcf {
    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 */
.logo-b58c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.blue_b8d0 {
    margin: 2rem 0;
}

.breadcrumb-a8c8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.basic-cec3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.thick-c5a7 {
    list-style: none;
    padding: 0;
}

.thick-c5a7 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;
}

.thick-c5a7 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.thick-c5a7 li:last-child {
    border-bottom: none;
}

.icon-ed5d {
    text-align: center;
    margin-top: 2rem;
}

.heading_8e99 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.link-top-62eb {
    padding: var(--section-padding);
}

.active_cf75 {
    margin: 2rem 0;
}

.message-5a8f {
    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) {
    .message-5a8f {
        flex-direction: column;
        align-items: flex-start;
    }
}

.message-5a8f:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.focus_static_7486 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.hovered-aff5 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.image_last_b0d7 {
    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;
}

.rough_e07b {
    flex: 1;
}

.hovered-5e5a {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.notification-pro-92b5 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.gallery-huge-85f7 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.summary_b02c {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .summary_b02c {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.gold_7b07 {
    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);
}

.gold_7b07:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.gold_7b07 .sidebar-5211 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.gold_7b07 .box_ddb1 {
    color: var(--text-gray);
    font-size: 1rem;
}

.widget_d2b4 {
    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);
}

.carousel_fresh_7bc6 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.carousel_fresh_7bc6 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.frame_aed6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .frame_aed6 {
        grid-template-columns: 1fr 1fr;
    }
}

.title-0114 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.bronze_1dde {
    margin-bottom: 1.5rem;
}

.bronze_1dde label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.bronze_1dde input,
.bronze_1dde 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;
}

.bronze_1dde input:focus,
.bronze_1dde select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.video-slow-3bf3 {
    width: 100%;
    margin-top: 1rem;
}

.photo_under_fcb9 {
    display: flex;
    align-items: center;
}

.container-2110 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.main_glass_6f9b {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.paper-1250 {
    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;
}

.under_3c01 {
    color: var(--text-gray);
}

.carousel-d0ce {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.first-e8bb {
    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);
}

.first-e8bb p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.outline_mini_6767 {
    margin-top: 3rem;
}

.pattern_paper_505c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.overlay_cold_dcc8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.main-567e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.plasma-cc51 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plasma-cc51:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.modal-dark-43ba {
    padding: var(--section-padding);
}

.filter_blue_277f {
    margin: 2rem 0;
}

.dim_edd2 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.background-wood-3e45 {
    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;
}

.background-wood-3e45:hover, .background-wood-3e45.fn-active-550a {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.east-236d {
    display: none;
}

.east-236d.fn-active-550a {
    display: block;
}

.accordion_rough_595d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.primary_a129 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.down-730d h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.down-730d ul {
    list-style: none;
    padding: 0;
}

.down-730d ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.down-730d ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.tabs-9186 {
    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 */
.mask-narrow-a640 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.input_f282 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.iron_6f29 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.box_tall_3a58 {
    color: var(--accent-color);
    margin: 0;
}

.border_9eb0 {
    display: flex;
    gap: 1.5rem;
}

.logo-6530 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.first-0c07 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.pattern-eda7 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.pattern-eda7.focus-fixed-8fb5 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.pattern-eda7.rough-a7a6 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.pattern-eda7.module-solid-168c {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.picture_f985 {
    margin-top: 2rem;
}

.video-4dac {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.info-5fcb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .info-5fcb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hovered-0f9d {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.pressed-ac66 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.brown_feec {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.border_plasma_be5e {
    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 */
.button_copper_9ee1 {
    padding: var(--section-padding);
}

.outline_tiny_0153 {
    margin: 2rem 0;
}

.center-957f {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.carousel-wood-f038 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.motion_1c3f {
    list-style: none;
    padding: 0;
}

.motion_1c3f 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;
}

.motion_1c3f li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.motion_1c3f li:last-child {
    border-bottom: none;
}

.row-dim-6be4 {
    margin: 2rem 0;
}

.prev_983f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.full-6ddd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .full-6ddd {
        grid-template-columns: repeat(2, 1fr);
    }
}

.last-51f9 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tertiary-71c3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.description_dim_17d3 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.active-789d {
    margin-top: 2rem;
}

.avatar-short-dbdc {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.gas-18c8 {
    list-style: none;
    padding: 0;
}

.tertiary_thick_8e7c {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.tertiary_thick_8e7c a {
    color: var(--accent-color);
    text-decoration: none;
}

.tertiary_thick_8e7c a:hover {
    text-decoration: underline;
}

.description-smooth-62f1 {
    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 */
.alert_green_454e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.highlight-64c4 {
    margin: 2rem 0;
}

.info_pressed_63f1 {
    margin-bottom: 3rem;
}

.info_pressed_63f1 .basic-cec3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.active_5df2 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.last_5e6c {
    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);
}

.last_5e6c:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.menu-6c9a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .menu-6c9a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gradient_stone_2754 {
    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 */
.carousel_soft_7727 {
    padding: var(--section-padding);
}

.focus_out_2b97 {
    margin: 2rem 0;
}

.container-3903 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.iron-59ef {
    overflow-x: auto;
    margin: 2rem 0;
}

.table-medium-551f {
    background: rgba(6, 182, 212, 0.1) !important;
}

.pagination_fresh_ed2d {
    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;
}

.modal_slow_40ac {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.large_e42d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .large_e42d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.purple_444a {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.purple_444a .thumbnail_short_2ff5 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.purple_444a .pink-e61a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tiny_b29c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.motion-ef11 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.summary_hot_0fe1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .summary_hot_0fe1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.primary-7dda {
    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;
}

.primary-7dda:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.detail_bfe5 {
    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);
}

.picture_8e09 {
    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;
}

.hidden_bottom_2720 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.description_ced2 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.large_c37c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.gold-1215 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.aside-center-0a0b {
    color: var(--text-white);
    font-weight: 600;
}

.shade_cd98 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.soft_fa81 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.soft_fa81 .shade-fast-a315 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.gallery_4b95 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .gallery_4b95 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.avatar-388c {
    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);
}

.avatar-388c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.avatar-388c .sidebar-5211 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.avatar-388c .box_ddb1 {
    color: var(--text-gray);
    font-size: 1rem;
}

.component-soft-6019 {
    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);
}

.menu_gold_374a {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.menu_gold_374a strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.hard-57c0 {
    margin: 2rem 0;
}

.hard-cbb0 {
    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);
}

.hard-cbb0:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.hidden-afc5 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.right-4422 {
    flex: 1;
}

.overlay-simple-acce {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.wide_5c5f {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.plasma_f964 {
    margin: 2rem 0;
}

.outline_down_e568 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outline_down_e568 .pink-e61a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.outline_down_e568 .background-eb4d {
    color: var(--text-gray);
    margin: 0;
}

.heading-under-b83a {
    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);
}

.heading-under-b83a .badge_large_cf74 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.tiny_b29c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.blue-0504 {
    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;
}

.smooth_4432 {
    flex: 1;
}

.border_right_415a {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.warm_f33a {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.over_7c0e {
    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;
}

.button_dirty_9d8e {
    flex: 1;
}

.frame-pink-4bfb {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.slider-3be0 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.image_a12d {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.top_4fe1 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.article-2685 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.article-2685 .shade-fast-a315 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.picture-aab8 {
    margin-top: 2rem;
}

.picture-aab8 .search_white_7abd {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.preview-75b0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.item-a17e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .item-a17e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.item-a17e .shade-a63c {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.breadcrumb-north-9bed {
    margin: 2rem 0;
}

.panel-center-9443 {
    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 */
.breadcrumb-0f1d {
    padding: var(--section-padding);
}

.bright-d498 {
    margin-top: 1rem;
}

.outer_6d6f {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.outer_6d6f li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.outer_6d6f li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.slider-5c78 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.basic_c812 {
    margin: 2rem 0;
}

.paragraph_f79f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.selected-948a {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.tertiary-narrow-00d5 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.text-small-c5c7 {
    margin: 2rem 0;
}

.inner_67d0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.inner_67d0 .basic-cec3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.dim_f4fc {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .dim_f4fc {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-advanced-226f {
    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);
}

.badge-fe19 {
    color: var(--text-white);
    font-weight: 600;
}

.badge-fast-9515 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.plasma-01a3 {
    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);
}

.plasma-01a3 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.right_18a2 {
    padding: var(--section-padding);
}

.sidebar_cold_f38b {
    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;
}

.sidebar_cold_f38b:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.heading_top_873a {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.heading_top_873a .message_cf18 {
    font-size: 2rem;
    flex-shrink: 0;
}

.heading_top_873a .fresh_afd2 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.selected_8b49 {
    flex: 1;
}

.carousel-yellow-bf68 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.warm-1800 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.warm-1800 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.warm-1800 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.current_ae4c {
    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);
}

.current_ae4c p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.current_ae4c strong {
    color: var(--warning-color);
}

/* Slots Section */
.filter_de4c {
    padding: var(--section-padding);
}

.disabled_south_9174 {
    margin: 2rem 0;
}

/* Table Games Section */
.red-4dc4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.short-3ab4 {
    margin: 2rem 0;
}

.secondary_83f8 {
    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);
}

.secondary_83f8:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.secondary_83f8 .footer_aa20 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.secondary_83f8 .description_fixed_ef2f {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.menu-iron-7ac5 {
    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);
}

.menu-iron-7ac5 .badge_large_cf74 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.text-hovered-3bf0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.surface_light_c022 {
    margin: 2rem 0;
}

.up-d128 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.notification_silver_6a75 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.warm_1050 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.avatar_paper_9127 {
    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);
}

.avatar_paper_9127:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.avatar_paper_9127.fn-active-550a {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.avatar-yellow-e07d {
    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);
}

.white_d80a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.white_d80a strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.column_dark_0bb7 {
    padding: var(--section-padding);
}

.basic-b1fd {
    margin: 2rem 0;
}

.advanced_f7bd {
    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);
}

.advanced_f7bd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .advanced_f7bd {
        flex-direction: column;
        align-items: flex-start;
    }
}

.bronze_1e97 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.chip_fbd9 {
    flex: 1;
}

.paragraph_63d6 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.pink-94fd {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.selected_3f97 {
    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;
}

.rough-23f9 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.current_d8ce {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.status-right-02f5 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.north_c05c {
    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;
}

.north_c05c:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.cool-1014 {
    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);
}

.border_cold_baef {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.border_cold_baef strong {
    color: var(--accent-color);
}

/* New Games Section */
.disabled-new-95e4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tertiary-5e2d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .tertiary-5e2d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tertiary-5e2d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.overlay_easy_3fce {
    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;
}

.overlay_easy_3fce:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.search-light-fd07 {
    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;
}

.breadcrumb-db72 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.label-first-8bcb {
    font-size: 2rem;
}

.mask-tall-2ad5 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.small-80a5 {
    flex: 1;
}

.upper-29db {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.texture_9295 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.sidebar_d023 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.prev_75e1 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.card_wood_12c0 {
    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;
}

.sidebar-5050 {
    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;
}

.sidebar-5050:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.picture-83f5 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.menu_4848 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.glass-e911 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .glass-e911 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.message-e460 {
    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);
}

.breadcrumb_short_ae25 {
    color: var(--text-white);
    font-weight: 600;
}

.button-3773 {
    color: var(--accent-color);
    font-weight: 600;
}

.highlight_5c15 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.highlight_5c15 strong {
    color: var(--accent-color);
}

/* Security Section */
.clean-8849 {
    padding: var(--section-padding);
}

/* Benefits Section */
.preview_e12d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.hero_fluid_51ac {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.alert-8234 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.accent_876f {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.notification-hard-379d {
    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) {
    .notification-hard-379d {
        flex-direction: column;
        gap: 1rem;
    }
}

.notification-hard-379d:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.notification-hard-379d .over_7c0e {
    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;
}

.notification-hard-379d .button_dirty_9d8e {
    flex: 1;
}

.notification-hard-379d .frame-pink-4bfb {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.notification-hard-379d .slider-3be0 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.blue_4ae0 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.blue_4ae0 .text_5622 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.blue_4ae0 .label_medium_a47c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blue_4ae0 .label_medium_a47c li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.blue_4ae0 .label_medium_a47c li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.tag_fluid_c38e {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.last_a11e {
    padding: var(--section-padding);
}

.row-under-9caf {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .row-under-9caf {
        grid-template-columns: repeat(3, 1fr);
    }
}

.middle-0687 {
    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);
}

.middle-0687:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.middle-0687 .tooltip_white_6446 {
    font-size: 2rem;
    flex-shrink: 0;
}

.middle-0687 .paragraph_lower_5d40 {
    flex: 1;
}

.middle-0687 .photo_182e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.middle-0687 .filter_stale_e300 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.article-slow-6ad7 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.article-slow-6ad7 .fluid-8e6d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.article-slow-6ad7 .popup_4e7a {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.article-slow-6ad7 .popup_4e7a 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);
}

.article-slow-6ad7 .popup_4e7a li:last-child {
    border-bottom: none;
}

.article-slow-6ad7 .popup_4e7a 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;
}

.article-slow-6ad7 .popup_4e7a li strong {
    color: var(--text-white);
}

.active_b599 {
    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_b599 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.active_b599 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.primary_warm_9f80 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.feature_4e3e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .feature_4e3e {
        grid-template-columns: repeat(2, 1fr);
    }
}

.content-6721 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.content-6721:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.tiny_e0cc {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.list-d061 {
    font-size: 2rem;
}

.sidebar_c57b {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.lower-4723 {
    flex: 1;
}

.aside_4acd {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aside_4acd li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.aside_4acd li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.pagination_b820 {
    margin-top: 3rem;
}

.center-957f {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.carousel-wood-f038 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.motion_1c3f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.motion_1c3f li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.motion_1c3f li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.motion_1c3f li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.selected-2680 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.under_dca4 {
    margin: 2rem 0;
}

.caption_fresh_10e8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.caption_fresh_10e8 .basic-cec3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.in_808d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .in_808d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.element_3f10 {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background: var(--secondary-bg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

.element_3f10:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.tertiary_motion_4381 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.north_a9a5 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.container_53c6 {
    padding: var(--section-padding);
}

.form_advanced_6f35 {
    margin: 2rem 0;
}

.detail_silver_0e40 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .detail_silver_0e40 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .detail_silver_0e40 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wrapper-2b91 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.wrapper-2b91:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.info-ca10 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.under_bc51 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.dynamic-e4a5 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.dynamic-e4a5.accordion_in_b81f {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.header_purple_731c {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.stone-6b3b {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.tooltip_2421 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.motion_7b86 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.shade-dc08 {
    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);
}

.shade-dc08 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.shade-dc08 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.accent_yellow_e17c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.outline-dim-9439 {
    margin: 2rem 0;
}

.tag-hot-4436 {
    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) {
    .tag-hot-4436 {
        flex-direction: column;
        gap: 1rem;
    }
}

.tag-hot-4436:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.tag-hot-4436::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);
}

.old-2fa0 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.feature-1f7e {
    flex: 1;
}

.thumbnail-gas-7fa8 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.image_last_1fb5 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.image_last_1fb5 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.sort_light_8e32 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.info_a5da {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.shade_clean_d804 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .shade_clean_d804 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wrapper-wide-f080 {
    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);
}

.background-2960 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.block_pink_f05f {
    flex: 1;
}

.popup_solid_5673 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.texture_brown_0920 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.gold_3393 {
    margin-top: 2rem;
    text-align: center;
}

.layout-active-4d35 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.layout-active-4d35 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.upper-a166 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .upper-a166 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tooltip-bottom-e0d4 {
    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);
}

.tooltip-bottom-e0d4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.tooltip-bottom-e0d4 .liquid_3324 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tooltip-bottom-e0d4 .box-3f82 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.tooltip-bottom-e0d4 .inner_1e68 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.tooltip-bottom-e0d4 .search_hard_9e66 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.hard_70b7 {
    padding: var(--section-padding);
}

.dim_0324 .outer_1dad {
    flex: 1;
}

/* Promo Calendar Section */
.filter_narrow_7d0a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pro_15fe {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pro_15fe {
        grid-template-columns: repeat(3, 1fr);
    }
}

.panel-paper-baac {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.info-d9d6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.primary_ae33 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dropdown-555d {
    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);
}

.tertiary-59b6 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.medium-e3f7 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.carousel_static_af5d {
    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);
}

.carousel_static_af5d p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.carousel_static_af5d strong {
    color: var(--accent-color);
}

/* Requirements Section */
.article-46a6 {
    padding: var(--section-padding);
}

.outline_bottom_dc98 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .outline_bottom_dc98 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.slider_yellow_0a1a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.chip-72e3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.nav_0e2c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav_0e2c li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.east_c973 {
    margin-top: 3rem;
}

.east_c973 .center-957f {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.east_c973 .carousel-wood-f038 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.east_c973 .motion_1c3f {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.east_c973 .motion_1c3f li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.east_c973 .motion_1c3f li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.east_c973 .motion_1c3f li strong {
    color: var(--warning-color);
}

.list-4ff5 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.list-4ff5 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.component-glass-3237 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.north_f5ce {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .north_f5ce {
        grid-template-columns: repeat(3, 1fr);
    }
}

.shade-rough-d119 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shade-rough-d119 .basic-cec3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.smooth_9148 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.notice-under-8b16 {
    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);
}

.notice-under-8b16:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.down-18a4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.cool-3e8b {
    flex: 1;
}

.panel-45f4 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.list-iron-d753 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.west_4d7f {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.liquid_a38c {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.section_rough_8e72 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .section_rough_8e72 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.menu-lower-94d4 {
    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);
}

.menu-lower-94d4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.item-plasma-2155 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.west_43da {
    color: var(--text-gray);
    font-size: 1rem;
}

.carousel_fresh_7bc6 {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.media_e35b {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.media_e35b strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.current-555f { 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; }
.upper-426a, .section_39e6 { max-width:100%; height:auto; }

.dropdown-stale-c8a6, .pink-5dae, .surface-center-1448 { white-space:normal; }

.thumbnail-pro-0d80,
.pagination_bronze_e11e,
.link-cool-7d30,
.upper-a166,
.plasma_f964,
.secondary_4701 {
  flex-wrap:wrap;
}

[class*="grid"],
.section_rough_8e72,
.detail_silver_0e40,
.accordion-hard-f2e2 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.dark-1ea1 img,
.pagination_bronze_e11e img,
.mask-acff img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.active_dfa8, .sidebar_068d,
.column_1bfc, .hidden-acba {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.pagination_e6a7 { width:100%; overflow-x:auto; }
.pagination_e6a7 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.south_7b3c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .south_7b3c {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.pattern_left_aafa {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.input_bottom_8df4,
.bright_19d9,
.complex-6a54,
.gradient-9197,
.summary_b02c,
.section_rough_8e72,
.detail_silver_0e40,
.accordion-hard-f2e2,
.media_303a,
.basic-b1fd,
.south_7b3c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .input_bottom_8df4,
  .bright_19d9,
  .complex-6a54,
  .gradient-9197,
  .summary_b02c,
  .section_rough_8e72,
  .detail_silver_0e40,
  .accordion-hard-f2e2,
  .media_303a,
  .basic-b1fd,
  .south_7b3c {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.section_out_e6d4,
.gold_7b07,
.menu-lower-94d4,
.backdrop-7679,
.wrapper-2b91,
.widget_0707,
.advanced_f7bd,
.pattern_left_aafa {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.notification_current_b1f4,
.popup_c092,
.static_ec31 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.notification_current_b1f4 > *,
.popup_c092 > *,
.static_ec31 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: ac91 */
.shadow-element-q6 {
  padding: 0.2rem;
  font-size: 10px;
  line-height: 1.3;
}
