/* {$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;
}

.active_8273 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.gradient-4b10 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .gradient-4b10 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .gradient-4b10 {
        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 */
.pro_be2c {
    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);
}

.primary_15fe {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .primary_15fe {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .secondary_53ae {
        grid-column: 1;
    }
    
    .green-15a1 {
        grid-column: 2;
    }
    
    .complex-a5cc {
        grid-column: 3;
    }
}

.secondary_53ae img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.secondary_53ae:hover img {
    transform: scale(1.05);
}

/* Navigation */
.aside-729f {
    display: none;
}

@media (min-width: 1024px) {
    .aside-729f {
        display: block;
    }
}

/* Grouped Navigation */
.current_7532 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.sort-bright-046a {
    position: relative;
}

.hard-4333 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.sort-bright-046a .shadow_8b92 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.shadow_8b92 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.highlight-b9f0 {
    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;
}

.highlight-b9f0:hover,
.highlight-b9f0.fn-active-4259 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.header-1cff {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .header-1cff {
        display: flex;
    }
}

/* Mobile Register Button */
.green-15a1 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .green-15a1 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.modal_focused_9ab5 {
    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;
}

.modal_focused_9ab5::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 */
.complex-a5cc {
    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) {
    .complex-a5cc {
        display: none;
    }
}

.complex-a5cc span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.complex-a5cc.fn-active-4259 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.complex-a5cc.fn-active-4259 span:nth-child(2) {
    opacity: 0;
}

.complex-a5cc.fn-active-4259 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav_thick_ae75 {
    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;
}

.nav_thick_ae75.fn-active-4259 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.bright-cf6c {
    overflow: hidden;
}

.hidden-02a5 {
    list-style: none;
    padding: 0.75rem 0;
}

.card-dim-5b97 {
    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;
}

.card-dim-5b97:hover,
.card-dim-5b97.fn-active-4259 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.card-dim-5b97.element-light-c24e {
    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;
}

.card-dim-5b97.element-light-c24e::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 */
.main_0ba1 {
    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;
}

.paragraph-soft-5d38 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.paragraph-soft-5d38:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.silver-a52f {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.silver-a52f:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.progress_19fe {
    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;
}

.progress_19fe:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.input_4465 {
    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;
}

.old-ab78 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.old-ab78:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.photo-static-129b {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.photo-static-129b:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.hero-lite-7854 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.hero-lite-7854: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);
}

.smooth-797c {
    font-size: 1em;
    font-weight: 700;
}

.dynamic-f8ca {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.search_medium_c318 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.search_medium_c318::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;
}

.up_ee69 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .up_ee69 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.container-6551 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.tabs_9251 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.tooltip_lite_fcb8 {
    margin-bottom: 2rem;
}

.left_15f0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .left_15f0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.silver_fcac {
    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);
}

.element_aa8a {
    font-size: 1.5rem;
}

.tag-east-a4b2 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.backdrop_wide_c11f {
    display: flex;
    justify-content: center;
    align-items: center;
}

.badge-tall-a640 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.badge-tall-a640:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.tertiary-0324 {
    text-align: center;
    margin-bottom: 3rem;
}

.copper-848c {
    margin-bottom: 1rem;
}

.mask_right_862e {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.tabs-b9cb {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .tabs-b9cb {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .tabs-b9cb.lower_3fc4 {
        direction: rtl;
    }
    
    .tabs-b9cb.lower_3fc4 > * {
        direction: ltr;
    }
}

.gallery_glass_dbfb {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.gallery_glass_dbfb:first-child {
    margin-top: 0;
}

.wide_d3bc {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.label_0a07 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.label_0a07:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.summary-5980 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .summary-5980 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.info_bronze_3afa {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.block-3c19 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.column_clean_4892 {
    list-style: none;
}

.column_clean_4892 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.column_clean_4892 li:last-child {
    border-bottom: none;
}

/* Games Features */
.accent-82d6 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.photo-72c1 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.status-middle-befa {
    font-size: 2rem;
    flex-shrink: 0;
}

.text-full-d088 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.breadcrumb-236e {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.brown_c09a {
    margin: 2rem 0;
}

.hard_ca55 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.narrow-17da {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.tag-f09b {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.top_eb97 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.slow-d8ce {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .slow-d8ce {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fresh_7189 {
    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);
}

.fresh_7189:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.row-0e07 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.shade_8f94 {
    font-size: 1.5rem;
}

.description_f588 {
    color: var(--accent-color);
    margin: 0;
}

.complex_482c {
    list-style: none;
}

.complex_482c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.complex_482c li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.icon_middle_8670 {
    margin: 2rem 0;
}

.row-huge-b7b7 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.grid-f399 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .grid-f399 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pro-965a {
    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);
}

.component_center_6141 {
    font-size: 1.25rem;
}

.popup_under_ad7c {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.tabs-pressed-de94,
.simple-2fac {
    text-align: center;
    margin: 2rem 0;
}

.active_out_b79e,
.grid_mini_f900 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.soft_4ab9 {
    margin: 2rem 0;
    text-align: center;
}

.hero-ecd1 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-ecd1::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;
}

.dark_24f9 {
    position: relative;
    z-index: 1;
}

.action_090d {
    margin-bottom: 1rem;
}

.component-8774 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.label_e091 {
    margin-bottom: 3rem;
}

.image-5885 {
    margin-top: 3rem;
}

.last-f325 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .last-f325 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.last-f325 .silver_fcac {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.backdrop_4e44 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.grid_15b6 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.main_up_7fa6 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.progress-a258 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .progress-a258 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .progress-a258 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.iron_103b {
    margin-bottom: 1rem;
}

.text-next-8351 img {
    margin-bottom: 1rem;
}

.tooltip_bronze_3a27 {
    color: var(--text-gray);
    line-height: 1.6;
}

.accordion-pink-ff9e {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.mini-9056 {
    list-style: none;
}

.mini-9056 li {
    margin-bottom: 0.5rem;
}

.mini-9056 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.mini-9056 a:hover {
    color: var(--accent-color);
}

.black_9162 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.lower-1826 {
    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);
}

.lower-1826:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.container-45d1 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.container-45d1 p {
    margin-bottom: 0.25rem;
}

.info_c83f {
    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) {
    .info_c83f {
        flex-direction: row;
    }
}

.active_a82b {
    text-align: center;
}

@media (min-width: 768px) {
    .active_a82b {
        text-align: left;
    }
}

.active_a82b p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.south-1c33 {
    font-size: 0.75rem !important;
}

.icon-west-db91 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.first-e6c7 {
    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);
    }
}

.picture_6b9b {
    animation: fadeInUp 0.6s ease-out;
}

.feature_hovered_27a1 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.card-9b2d {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .card-9b2d {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.solid-8680 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .solid-8680 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.breadcrumb-8406 {
    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);
}

.breadcrumb-8406 .status-middle-befa {
    font-size: 1.25rem;
}

.breadcrumb-8406 .primary_ba9e {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.frame-bright-3c72 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .frame-bright-3c72 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.focus-c33d {
    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);
}

.focus-c33d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.orange_cf46 {
    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);
}

.lite-01bc {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.item_cool_f553 {
    color: var(--text-gray);
    line-height: 1.6;
}

.header-slow-7077 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.blue_4dc3 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.blue_4dc3 .text-full-d088 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.blue_4dc3 .breadcrumb-236e {
    color: var(--text-gray);
    line-height: 1.6;
}

.content_middle_53b9 {
    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-up-623f {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.input-up-623f img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.input-up-623f img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.last_ee85 {
    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);
}

.gradient-gold-2480 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.thumbnail-6f4c {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.thumbnail-6f4c label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.thumbnail-6f4c 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);
}

.thumbnail-6f4c input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.thumbnail-6f4c input::placeholder {
    color: var(--text-muted);
}

.layout-6dca {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.preview-c260 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.preview-c260 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.overlay-soft-d1bb {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.overlay-soft-d1bb:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.grid-f399 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .grid-f399 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pro-965a {
    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);
}

.pro-965a .component_center_6141 {
    font-size: 1.25rem;
}

.pro-965a .popup_under_ad7c {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.main_wide_5438 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.popup-37b0 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.popup-37b0 .status-middle-befa {
    font-size: 2rem;
    flex-shrink: 0;
}

.popup-37b0 .text-full-d088 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.popup-37b0 .breadcrumb-236e {
    color: var(--text-gray);
    line-height: 1.6;
}

.grid-copper-8875 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.filter_upper_4d6f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.filter_upper_4d6f .red-c558 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.filter_upper_4d6f .down_8a63 {
    color: var(--text-gray);
    line-height: 1.6;
}

.large_afd3 {
    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);
}

.column_down_01bc {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .column_down_01bc {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pagination-hard-864c {
    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);
}

.pagination-hard-864c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.dim_4d35 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.brown-5e7c {
    flex: 1;
}

.slider_1e44 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.highlight_5b19 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.selected-85c4 {
    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);
}

.selected-85c4:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.status-3a04 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .status-3a04 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.main-707b {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.main-707b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.notice-lite-e699 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hidden-bottom-195e {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.highlight_2bef {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.button_mini_768f {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.banner-1c75 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.plasma-9bb9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.white_b0ca {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.white_b0ca .alert-yellow-55a0 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.white_b0ca .picture_lite_69d0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.caption_e129 {
    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);
}

.text_upper_4a4b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.component_c6b5 {
    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);
}

.component_c6b5 .status-middle-befa {
    font-size: 2rem;
    flex-shrink: 0;
}

.component_c6b5 .text-full-d088 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.component_c6b5 .breadcrumb-236e {
    color: var(--text-gray);
    line-height: 1.6;
}

.media-aafd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .media-aafd {
        grid-template-columns: repeat(3, 1fr);
    }
}

.component-0cba {
    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);
}

.component-0cba:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.tabs_under_0a32 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tabs_under_0a32 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.column-dc70 {
    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);
}

.column-dc70:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.disabled-iron-eba1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-east-7d63 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.narrow-17da {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.banner_6938 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.heading_pink_6812 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.next-1920 {
    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);
}

.next-1920:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.article-stale-3520 {
    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);
}

.summary_3455 {
    flex: 1;
}

.search_tiny_9f70 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.accent-21ed {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.content-dc8b {
    color: var(--text-gray);
    line-height: 1.6;
}

.tag-6ef5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.layout_5c3a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.layout_5c3a .red-c558 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.layout_5c3a .down_8a63 {
    color: var(--text-gray);
    line-height: 1.6;
}

.simple-2fac {
    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);
}

.narrow-445a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .narrow-445a {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.thumbnail-cold-9828 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .thumbnail-cold-9828 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-8c9f {
    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);
}

.footer-8c9f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.rough-05d6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.solid-fce6 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.frame-cool-f086 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.prev_e4e4 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.narrow-bcd1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gradient_0620 {
    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);
}

.mini_cd9d {
    font-size: 2rem;
    flex-shrink: 0;
}

.media-aee8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.stone-d250 {
    color: var(--text-gray);
    line-height: 1.6;
}

.text_upper_4a4b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.component_c6b5 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.component_c6b5 .text-full-d088 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.component_c6b5 .breadcrumb-236e {
    color: var(--text-gray);
    line-height: 1.6;
}

.stone-b4c3 {
    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);
}

.highlight_ab57 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .highlight_ab57 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .highlight_ab57 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.text_down_0e81 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.text_down_0e81:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.photo_9d54 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.carousel_7669 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.accent_bcac {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.menu-easy-6d08 {
    padding: 1.5rem;
}

.message-top-2ed0 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.notice-1bf8 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notice-1bf8 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.notice-1bf8 li:last-child {
    border-bottom: none;
}

.notice-1bf8 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.text-00e5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .text-00e5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.medium_880f {
    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);
}

.medium_880f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.wrapper_first_2a28 {
    font-size: 2rem;
    flex-shrink: 0;
}

.component-910d {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.texture_clean_bf97 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.border-9d2a {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.outline-a559 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.steel-979a {
    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);
}

.fixed_f388 {
    font-size: 2rem;
    flex-shrink: 0;
}

.backdrop_8806 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.heading_e349 {
    color: var(--text-gray);
    line-height: 1.6;
}

.logo_36e0 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.sidebar_fresh_27b5 {
    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);
}

.easy-f8e5 {
    text-align: center;
}

.warm_876d {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.banner_c729 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.soft_104f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.old-5dfd {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.old-5dfd .text-full-d088 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.old-5dfd .breadcrumb-236e {
    color: var(--text-gray);
    line-height: 1.6;
}

.content_3baa {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .content_3baa {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .content_3baa {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sort-904a {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.sort-904a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.advanced-226f {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.module-72d5 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.text-full-d088 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.north-a8a9 {
    padding: 1.5rem;
}

.breadcrumb-236e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.info-large-44ff {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-large-44ff 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;
}

.info-large-44ff li:last-child {
    border-bottom: none;
}

.info-large-44ff li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.search-254d {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.wrapper-cool-c53c {
    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);
}

.wrapper-cool-c53c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.out_43e3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.current_d966 {
    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);
}

.orange_cf46 {
    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;
}

.lite-01bc {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.item_cool_f553 {
    color: var(--text-gray);
    line-height: 1.6;
}

.bright-dcd1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.text-9ed9 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.silver-6fe0 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.first-d8eb {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.icon-5cf4 {
    display: flex;
    gap: 1rem;
}

.icon-5cf4 .glass_86ba {
    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;
}

.basic_b175 {
    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);
}

.middle_4d62 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.table_8f89 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table_8f89 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;
}

.table_8f89 li:last-child {
    border-bottom: none;
}

.table_8f89 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.highlight_bottom_ae4c {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .highlight_bottom_ae4c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .highlight_bottom_ae4c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pro_3f6e {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.pro_3f6e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.backdrop_0dcd {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.shade_4856 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.alert-yellow-55a0 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.gradient_over_f57a {
    font-size: 1rem;
}

.smooth-41b5 {
    padding: 1.5rem;
}

.picture_lite_69d0 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.pink_5a2a {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.pink_5a2a .easy-f8e5 {
    text-align: center;
}

.pink_5a2a .banner_c729 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.pink_5a2a .easy_263a {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.new_b73e {
    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);
}

.new_b73e:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.thumbnail_e381 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .thumbnail_e381 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.photo-stone-576a {
    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);
}

.photo-stone-576a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.solid-6c0f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.red_ee3f {
    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);
}

.description_b88a {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight_2837 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.medium_2720 {
    color: var(--text-gray);
    line-height: 1.6;
}

.footer-fixed-88b6 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.highlight_a009 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.liquid_2101 {
    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);
}

.column_1cf4 {
    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;
}

.column_1cf4.highlight-short-6852 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.column_1cf4.thumbnail-08d6 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.column_1cf4.title_a2c3 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.column_1cf4.sort-d678 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.column_1cf4.input-47ed {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.under_2282 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.video_9929 {
    color: var(--text-gray);
    line-height: 1.6;
}

.thumbnail-right-7cbc {
    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);
}

.carousel-red-b610 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.grid-copper-8875 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.grid-copper-8875 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;
}

.grid-copper-8875 li:last-child {
    border-bottom: none;
}

.grid-copper-8875 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.title-c8c9 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .title-c8c9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .title-c8c9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pagination-large-e6ec {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.pagination-large-e6ec:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pagination-large-e6ec.carousel-ab04 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .pagination-large-e6ec.carousel-ab04 {
        grid-column: span 3;
    }
}

.container_0eb5 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.pagination-large-e6ec.carousel-ab04 .container_0eb5 {
    background: rgba(6, 182, 212, 0.1);
}

.short-c320 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.full-5cdc {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.pagination-large-e6ec.carousel-ab04 .full-5cdc {
    color: var(--info-color);
}

.bronze_dc4d {
    padding: 1.5rem;
    text-align: center;
}

.thumbnail-first-18f2 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.pagination-large-e6ec.carousel-ab04 .thumbnail-first-18f2 {
    color: var(--info-color);
}

.section-056a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.plasma_c9bf {
    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 */
.footer_pressed_ace9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .footer_pressed_ace9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tabs_slow_d118 {
    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);
}

.tabs_slow_d118:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hovered-f31c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.popup-37b0 {
    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);
}

.component_center_6141 {
    font-size: 2rem;
    flex-shrink: 0;
}

.backdrop-light-4aec {
    flex: 1;
}

.row-huge-b7b7 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.heading-f087 {
    color: var(--text-gray);
    line-height: 1.6;
}

.frame_9146 {
    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);
}

.popup_clean_f33c {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.sidebar_9007 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.first-e6c7 {
    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);
}

.black-dd44 {
  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);
}

.black-dd44 .easy-f8e5 {
    text-align: center;
}

.black-dd44 .warm_876d {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.black-dd44 .banner_c729 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.pagination_9983 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pro_53aa {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.input_white_59a6 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.preview_hot_b01b {
    color: var(--text-gray);
    line-height: 1.6;
}

.panel-a011 {
    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);
}

.next-8f15 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.container-b9f2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.advanced-679f {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .advanced-679f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .advanced-679f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery_hot_5979 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.gallery_hot_5979:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.glass-0dd1 {
    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);
}

.badge-inner-e342 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.hero_9038 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.icon_smooth_a8a9 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.icon_smooth_a8a9.smooth_bd30 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.icon_smooth_a8a9.message_motion_e779 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.icon_smooth_a8a9.accent-inner-69b9 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.table-west-e589 {
    padding: 1.5rem;
    text-align: center;
}

.section-483c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.backdrop_light_3c60 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.backdrop_light_3c60 .orange-c7d3 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.primary-ea21 {
    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);
}

.primary-ea21:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.message_fd3d {
  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);
}

.out_c821 {
    text-align: center;
}

.out_c821 .warm_876d {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.out_c821 .banner_c729 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.layout-upper-2029 { text-align: center; }
.action-5706 { text-align: left; }
.accordion_a07c { text-align: right; }

.content-da8e { margin-bottom: 0; }
.action_ada2 { margin-bottom: 0.5rem; }
.module-bronze-fccf { margin-bottom: 1rem; }
.under-a5d9 { margin-bottom: 1.5rem; }
.liquid-78e4 { margin-bottom: 2rem; }

.glass-189f { margin-top: 0; }
.paragraph-last-1208 { margin-top: 0.5rem; }
.card_stone_8f6e { margin-top: 1rem; }
.avatar_smooth_5762 { margin-top: 1.5rem; }
.black_542e { margin-top: 2rem; }

.fn-hidden-4259 { display: none; }
.fn-visible-4259 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .search_medium_c318 {
        padding: 6rem 0 3rem;
    }
    
    .up_ee69 {
        text-align: center;
    }
    
    .tabs-b9cb {
        text-align: center;
    }
    
    .left_15f0 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .pro_be2c,
    .nav_thick_ae75,
    .hero-ecd1,
    .main_up_7fa6 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .search_medium_c318 {
        background: none;
    }
}

/* Providers Section */
.sort-30a1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.notice_dirty_06e1 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .notice_dirty_06e1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .notice_dirty_06e1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.breadcrumb-8469 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.breadcrumb-8469:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.title-action-02e0 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.link-brown-b8f6 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.lower-78ee {
    list-style: none;
    padding: 0;
}

.lower-78ee li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.lower-78ee li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.north_e933 {
    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);
}

.north_e933 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.container_gas_3eca {
    padding: var(--section-padding);
}

.outer_fa39 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .outer_fa39 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.carousel-3662 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.carousel-3662:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.focus_4901 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.paragraph-dark-b12f {
    display: flex;
    flex-direction: column;
}

.status-upper-7f91 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.bottom-aad0 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.breadcrumb_lite_f9b2 {
    color: var(--accent-color);
}

.fluid_2de4 {
    font-size: 1.25rem;
}

.tooltip_988f {
    margin-bottom: 1rem;
}

.tooltip_988f p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.search-ec75 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.sidebar_brown_a53e {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.easy-f8e5 {
    text-align: center;
}

.warm_876d {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.banner_c729 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.hero_purple_6c90 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.brown-6303 {
    margin: 2rem 0;
}

.center_f847 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.center_f847 .status-middle-befa {
    font-size: 2rem;
    flex-shrink: 0;
}

.carousel-63f3 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.image_0156 {
    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;
}

.image_0156:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.button_dark_25a5 {
    font-size: 2rem;
}

.shadow_fixed_1410 {
    display: flex;
    flex-direction: column;
}

.module_a53f {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.outline_7e76 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.next-6200 {
    padding: var(--section-padding);
}

.in_b431 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .in_b431 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .in_b431 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.item-small-dd81 {
    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);
}

.item-small-dd81:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.item-small-dd81 .warm_876d {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.item-small-dd81 .banner_c729 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.item-small-dd81 .summary_ca42 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.upper_97d3 {
    margin-top: 4rem;
}

.grid-clean-45ee {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.hard-8918 {
    overflow-x: auto;
}

.popup-eeff {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.popup-eeff thead {
    background: var(--accent-color);
}

.popup-eeff th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.popup-eeff td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.popup-eeff tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.popup-eeff tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.tertiary_7f7e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.header-in-117f {
    max-width: 900px;
    margin: 0 auto;
}

.selected-900c {
    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);
}

.selected-900c:hover {
    border-color: var(--accent-color);
}

.accordion_small_c1b4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.accordion_small_c1b4 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.footer-5e50 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.selected-900c.fn-active-4259 .footer-5e50 {
    transform: rotate(45deg);
}

.row-2b94 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.selected-900c.fn-active-4259 .row-2b94 {
    max-height: 1000px;
}

.row-2b94 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.backdrop-522d {
    padding: var(--section-padding);
}

.input-up-623f {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.tertiary-8beb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.breadcrumb_e8d2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .breadcrumb_e8d2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.large-3af3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.texture-87e4 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tag_center_9639 {
    font-size: 2rem;
}

.text_5901 {
    color: var(--text-white);
    margin: 0;
}

.copper-c3ed {
    list-style: none;
    padding: 0;
}

.copper-c3ed li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.copper-c3ed li:last-child {
    border-bottom: none;
}

.icon-197e {
    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);
}

.icon-197e p {
    color: var(--success-color);
    margin: 0;
}

.notification_04de {
    margin-top: 3rem;
}

.middle_4d62 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.column-new-d384 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .column-new-d384 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.text_slow_8000 {
    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);
}

.filter_650b {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.text_slow_8000 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.static_97bc {
    padding: var(--section-padding);
}

.up_6322 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .up_6322 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.image_e4a9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.image_e4a9:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.label_46ea {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tooltip-advanced-a8dd {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.new_4ef5 {
    flex: 1;
}

.paragraph-5d26 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.title-17a1 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.widget_fa00 {
    color: var(--text-gray);
    line-height: 1.6;
}

.carousel-solid-5ee0 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel-solid-5ee0:last-child {
    border-bottom: none;
}

/* Comparison Section */
.static_7ae4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.active-bright-7deb {
    padding: var(--section-padding);
}

.complex_a33a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.outline-c442 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .outline-c442 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tooltip_tiny_b0f8 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.logo-purple-d55d, .icon-7c4f, .accent_1cd1 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.accent_1cd1 {
    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 */
.tertiary-2181 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.media-c5a4 {
    margin: 2rem 0;
}

.main-18f5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tall-c523 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.focused-1038 {
    list-style: none;
    padding: 0;
}

.focused-1038 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;
}

.focused-1038 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.focused-1038 li:last-child {
    border-bottom: none;
}

.popup_1f32 {
    text-align: center;
    margin-top: 2rem;
}

.hero_716c {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.background_9b7a {
    padding: var(--section-padding);
}

.module_middle_2e80 {
    margin: 2rem 0;
}

.summary_black_ad01 {
    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) {
    .summary_black_ad01 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.summary_black_ad01:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.sidebar-7e38 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.under-9be5 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.breadcrumb_center_e4b5 {
    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;
}

.grid-e5c2 {
    flex: 1;
}

.outline_48ad {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.block_action_fe40 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.progress_587f {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.caption_9152 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .caption_9152 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.tooltip-c60d {
    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);
}

.tooltip-c60d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.tooltip-c60d .warm_876d {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tooltip-c60d .banner_c729 {
    color: var(--text-gray);
    font-size: 1rem;
}

.soft-bfe8 {
    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);
}

.huge_8f43 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.huge_8f43 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.stale_4116 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .stale_4116 {
        grid-template-columns: 1fr 1fr;
    }
}

.advanced_d535 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.inner_fee9 {
    margin-bottom: 1.5rem;
}

.inner_fee9 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.inner_fee9 input,
.inner_fee9 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;
}

.inner_fee9 input:focus,
.inner_fee9 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.search-silver-68d8 {
    width: 100%;
    margin-top: 1rem;
}

.complex-b776 {
    display: flex;
    align-items: center;
}

.silver-57c2 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.layout-6d57 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.frame-ef24 {
    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;
}

.soft_a26c {
    color: var(--text-gray);
}

.summary-new-de51 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.gas-8002 {
    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);
}

.gas-8002 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.stone_6724 {
    margin-top: 3rem;
}

.banner-1c82 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.hidden_68ea {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pressed_eb82 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.clean_eb7c {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.clean_eb7c:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.next_cbbc {
    padding: var(--section-padding);
}

.heading_inner_0bb4 {
    margin: 2rem 0;
}

.input-29b0 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.warm-e031 {
    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;
}

.warm-e031:hover, .warm-e031.fn-active-4259 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.hard-21b6 {
    display: none;
}

.hard-21b6.fn-active-4259 {
    display: block;
}

.full-79ee {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.component_2e33 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.dark_e90f h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.dark_e90f ul {
    list-style: none;
    padding: 0;
}

.dark_e90f ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.dark_e90f ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.disabled-cool-8402 {
    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 */
.widget-wood-cabc {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.chip-new-a407 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.sort-hovered-af0a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.slider-18af {
    color: var(--accent-color);
    margin: 0;
}

.link_a9fa {
    display: flex;
    gap: 1.5rem;
}

.current_bb83 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.nav_tiny_aa6a {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.soft-2ea2 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.soft-2ea2.purple_c63e {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.soft-2ea2.small-7884 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.soft-2ea2.backdrop_247b {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.hovered-0576 {
    margin-top: 2rem;
}

.cold_4bad {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.left_118b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .left_118b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.status-lower-e78f {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.smooth-0909 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.middle_4290 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.gold_de2f {
    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 */
.accordion_6e51 {
    padding: var(--section-padding);
}

.paragraph-d0b5 {
    margin: 2rem 0;
}

.outline-dirty-4c28 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.pressed-f0e1 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.caption_2253 {
    list-style: none;
    padding: 0;
}

.caption_2253 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;
}

.caption_2253 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.caption_2253 li:last-child {
    border-bottom: none;
}

.background-dim-8631 {
    margin: 2rem 0;
}

.label-869c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.primary-paper-9347 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .primary-paper-9347 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dim_2a5b {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.modal_ad55 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.heading-blue-ca82 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.status-cbf7 {
    margin-top: 2rem;
}

.slider_1e44 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.logo_upper_c601 {
    list-style: none;
    padding: 0;
}

.aside_c12a {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.aside_c12a a {
    color: var(--accent-color);
    text-decoration: none;
}

.aside_c12a a:hover {
    text-decoration: underline;
}

.status_steel_188f {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    border-left: 4px solid var(--success-color);
}

/* League Coverage Section */
.info_huge_6fa6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.lower-6227 {
    margin: 2rem 0;
}

.search-1f5f {
    margin-bottom: 3rem;
}

.search-1f5f .tall-c523 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.glass_24bb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.shadow-pressed-9602 {
    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);
}

.shadow-pressed-9602:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.table_soft_7fa6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .table_soft_7fa6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accordion-57fa {
    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 */
.container_gas_0ed3 {
    padding: var(--section-padding);
}

.grid_1dea {
    margin: 2rem 0;
}

.new_3285 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.copper-13d0 {
    overflow-x: auto;
    margin: 2rem 0;
}

.item-paper-3c64 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.item_bright_97ab {
    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;
}

.hard-f37b {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.copper_0163 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .copper_0163 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.background-inner-0570 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.background-inner-0570 .status-middle-befa {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.background-inner-0570 .text-full-d088 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.module_7bcf {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.complex-9f43 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.list-dynamic-b493 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .list-dynamic-b493 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.background_40b1 {
    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;
}

.background_40b1:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.menu-basic-7d23 {
    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);
}

.media_dc2a {
    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;
}

.grid-static-018b {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.aside-pink-ed42 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.primary-fc07 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.slow-041b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.motion-a3b1 {
    color: var(--text-white);
    font-weight: 600;
}

.caption-13eb {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.cool_cbc3 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cool_cbc3 .glass_86ba {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.mask_cool_ef43 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .mask_cool_ef43 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tertiary_plasma_be6e {
    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);
}

.tertiary_plasma_be6e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.tertiary_plasma_be6e .warm_876d {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tertiary_plasma_be6e .banner_c729 {
    color: var(--text-gray);
    font-size: 1rem;
}

.dropdown_simple_d20c {
    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);
}

.secondary_action_5111 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.secondary_action_5111 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.narrow-bcd1 {
    margin: 2rem 0;
}

.gradient_0620 {
    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);
}

.gradient_0620:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.mini_cd9d {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.overlay-complex-5761 {
    flex: 1;
}

.media-aee8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.stone-d250 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.text_upper_4a4b {
    margin: 2rem 0;
}

.component_c6b5 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.component_c6b5 .text-full-d088 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.component_c6b5 .breadcrumb-236e {
    color: var(--text-gray);
    margin: 0;
}

.stone-b4c3 {
    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);
}

.stone-b4c3 .active_out_b79e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.module_7bcf {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.article-stale-3520 {
    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;
}

.summary_3455 {
    flex: 1;
}

.accent-21ed {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.content-dc8b {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.orange_cf46 {
    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;
}

.pattern_5d26 {
    flex: 1;
}

.lite-01bc {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.item_cool_f553 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.silver-6fe0 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.first-d8eb {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.icon-5cf4 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.icon-5cf4 .glass_86ba {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.basic_b175 {
    margin-top: 2rem;
}

.basic_b175 .middle_4d62 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.section-ecad {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.sidebar_fresh_27b5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .sidebar_fresh_27b5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sidebar_fresh_27b5 .easy-f8e5 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.soft_104f {
    margin: 2rem 0;
}

.old-5dfd {
    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 */
.border_e66d {
    padding: var(--section-padding);
}

.north-a8a9 {
    margin-top: 1rem;
}

.info-large-44ff {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.info-large-44ff li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.info-large-44ff li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.logo-3888 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.bottom_1adb {
    margin: 2rem 0;
}

.element_d5cf {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.first_d478 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card_fc75 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.image_a6d7 {
    margin: 2rem 0;
}

.table_16a1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.table_16a1 .tall-c523 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hard-6e01 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hard-6e01 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.focus-blue-acfe {
    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);
}

.module_7a0e {
    color: var(--text-white);
    font-weight: 600;
}

.gallery_easy_658d {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.easy-0243 {
    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);
}

.easy-0243 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.sort_a8f8 {
    padding: var(--section-padding);
}

.carousel_blue_d36c {
    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;
}

.carousel_blue_d36c:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.info-1ef2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-1ef2 .filter_650b {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-1ef2 .modal-short-ea52 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.paragraph_glass_dc2c {
    flex: 1;
}

.modal-short-5037 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.tabs_6f19 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tabs_6f19 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.tabs_6f19 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.notice_04e2 {
    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);
}

.notice_04e2 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.notice_04e2 strong {
    color: var(--warning-color);
}

/* Slots Section */
.block-last-8efc {
    padding: var(--section-padding);
}

.banner-1c75 {
    margin: 2rem 0;
}

/* Table Games Section */
.component-action-69a5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.plasma-9bb9 {
    margin: 2rem 0;
}

.white_b0ca {
    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);
}

.white_b0ca:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.white_b0ca .alert-yellow-55a0 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.white_b0ca .picture_lite_69d0 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.caption_e129 {
    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);
}

.caption_e129 .active_out_b79e {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.nav_1127 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.video_outer_ed1d {
    margin: 2rem 0;
}

.input_1e83 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.notice_eb34 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.container-9900 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.picture_short_829b {
    padding: 0.75rem 1.5rem;
    background: var(--secondary-bg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--text-white);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
}

.picture_short_829b:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.picture_short_829b.fn-active-4259 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.notification-stale-317a {
    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);
}

.layout_e379 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.layout_e379 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.article-iron-e5d5 {
    padding: var(--section-padding);
}

.gradient-bright-09d3 {
    margin: 2rem 0;
}

.white_de7e {
    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);
}

.white_de7e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .white_de7e {
        flex-direction: column;
        align-items: flex-start;
    }
}

.secondary-bc65 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.paragraph_37b0 {
    flex: 1;
}

.logo-right-c2cd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.highlight-tall-faf5 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.block_a742 {
    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;
}

.overlay-blue-854d {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.sidebar_712e {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.focus_7498 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.pro-8573 {
    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;
}

.pro-8573:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.popup_a5db {
    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);
}

.last_c352 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.last_c352 strong {
    color: var(--accent-color);
}

/* New Games Section */
.pattern-edf4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.highlight_clean_7e6d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .highlight_clean_7e6d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .highlight_clean_7e6d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.backdrop_outer_c65d {
    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;
}

.backdrop_outer_c65d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.dirty_a16d {
    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;
}

.mask_prev_3c91 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.yellow-1090 {
    font-size: 2rem;
}

.input_10de {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.label_c14c {
    flex: 1;
}

.surface-mini-1e57 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.grid_562d {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.red_4f86 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.section-fresh-388b {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.down_ce60 {
    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;
}

.silver-e374 {
    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;
}

.silver-e374:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.white-8384 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.search_6584 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.layout-warm-dd0d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .layout-warm-dd0d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.widget-aae0 {
    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);
}

.item_slow_6d7c {
    color: var(--text-white);
    font-weight: 600;
}

.form_active_60a5 {
    color: var(--accent-color);
    font-weight: 600;
}

.slider_4c24 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.slider_4c24 strong {
    color: var(--accent-color);
}

/* Security Section */
.motion-e48a {
    padding: var(--section-padding);
}

/* Benefits Section */
.next-ad85 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.gallery-gas-0f8c {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.large-16f7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.article-under-44e8 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.pagination-glass-9919 {
    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) {
    .pagination-glass-9919 {
        flex-direction: column;
        gap: 1rem;
    }
}

.pagination-glass-9919:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.pagination-glass-9919 .orange_cf46 {
    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;
}

.pagination-glass-9919 .pattern_5d26 {
    flex: 1;
}

.pagination-glass-9919 .lite-01bc {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.pagination-glass-9919 .item_cool_f553 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.video_46e1 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.video_46e1 .row-huge-b7b7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.video_46e1 .main_wide_5438 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.video_46e1 .main_wide_5438 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.video_46e1 .main_wide_5438 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.backdrop_2aa3 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.image-bright-6989 {
    padding: var(--section-padding);
}

.tag_smooth_eeb9 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .tag_smooth_eeb9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.south-6baa {
    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);
}

.south-6baa:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.south-6baa .bottom-e7c2 {
    font-size: 2rem;
    flex-shrink: 0;
}

.south-6baa .pink_e1fa {
    flex: 1;
}

.south-6baa .red-c558 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.south-6baa .block_7f72 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.picture_gas_0b29 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.picture_gas_0b29 .rough-c084 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.picture_gas_0b29 .black-ff57 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.picture_gas_0b29 .black-ff57 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);
}

.picture_gas_0b29 .black-ff57 li:last-child {
    border-bottom: none;
}

.picture_gas_0b29 .black-ff57 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;
}

.picture_gas_0b29 .black-ff57 li strong {
    color: var(--text-white);
}

.prev_3d86 {
    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);
}

.prev_3d86 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.prev_3d86 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.shadow_e863 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.grid-2c70 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .grid-2c70 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.texture-gold-afdb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.texture-gold-afdb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.button_north_3f26 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.narrow-9b8d {
    font-size: 2rem;
}

.solid_3717 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.bright_f33c {
    flex: 1;
}

.background_glass_95c3 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.background_glass_95c3 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.background_glass_95c3 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.wrapper-copper-c1a1 {
    margin-top: 3rem;
}

.outline-dirty-4c28 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.pressed-f0e1 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.caption_2253 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.caption_2253 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.caption_2253 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.caption_2253 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.south_d2f0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.filter_motion_5105 {
    margin: 2rem 0;
}

.notice-7c84 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.notice-7c84 .tall-c523 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.frame-42df {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .frame-42df {
        grid-template-columns: repeat(2, 1fr);
    }
}

.accordion-stale-b2b9 {
    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);
}

.accordion-stale-b2b9:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.white_88d0 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.out_430a {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.alert_4d85 {
    padding: var(--section-padding);
}

.widget_d088 {
    margin: 2rem 0;
}

.heading_ca62 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .heading_ca62 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .heading_ca62 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sort_smooth_62ee {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.sort_smooth_62ee:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.paragraph-4135 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.nav-copper-5d71 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.container-tiny-5b28 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.container-tiny-5b28.input-green-05d1 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.container_adb3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.alert_selected_565b {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.image_brown_829d {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.in_6123 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.motion_fbf7 {
    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);
}

.motion_fbf7 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.motion_fbf7 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.bright-a0ff {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.caption-prev-5c46 {
    margin: 2rem 0;
}

.list-red-6614 {
    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) {
    .list-red-6614 {
        flex-direction: column;
        gap: 1rem;
    }
}

.list-red-6614:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.list-red-6614::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);
}

.pagination-pink-62e5 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.search-2eff {
    flex: 1;
}

.status_wood_0fd7 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.tag-9970 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tag-9970 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.message_green_527f {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.paragraph_45d7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.gradient_small_1e8f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .gradient_small_1e8f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.block_9970 {
    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);
}

.last_461c {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.title_bronze_5e54 {
    flex: 1;
}

.secondary_south_4108 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.component-9bf2 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.avatar-e3fa {
    margin-top: 2rem;
    text-align: center;
}

.image_b24e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.image_b24e strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.thumbnail_e381 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .thumbnail_e381 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.photo-stone-576a {
    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);
}

.photo-stone-576a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.photo-stone-576a .wrapper_first_2a28 {
    font-size: 2rem;
    flex-shrink: 0;
}

.photo-stone-576a .component-910d {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.photo-stone-576a .texture_clean_bf97 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.photo-stone-576a .border-9d2a {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.slider_steel_fb56 {
    padding: var(--section-padding);
}

.red_ee3f .feature_green_c15e {
    flex: 1;
}

/* Promo Calendar Section */
.advanced-7572 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.frame-9a69 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .frame-9a69 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.focus_db6b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tabs-b9c5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.background_right_3870 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.column_up_eaa1 {
    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);
}

.box_upper_5655 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.column-new-4a28 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.content-afc5 {
    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);
}

.content-afc5 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.content-afc5 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.full-e798 {
    padding: var(--section-padding);
}

.accordion-static-e61b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .accordion-static-e61b {
        grid-template-columns: repeat(2, 1fr);
    }
}

.media-d6f2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.preview_c905 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.table-stale-0b8c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table-stale-0b8c li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.upper-240c {
    margin-top: 3rem;
}

.upper-240c .outline-dirty-4c28 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.upper-240c .pressed-f0e1 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.upper-240c .caption_2253 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.upper-240c .caption_2253 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.upper-240c .caption_2253 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.upper-240c .caption_2253 li strong {
    color: var(--warning-color);
}

.popup-left-f73e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.popup-left-f73e strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.paper_b116 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.caption-last-2f31 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .caption-last-2f31 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.container-paper-72dd {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.container-paper-72dd .tall-c523 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.hidden_a96b {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.surface-copper-34d8 {
    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);
}

.surface-copper-34d8:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.pressed-5520 {
    font-size: 2rem;
    flex-shrink: 0;
}

.black-400b {
    flex: 1;
}

.pattern-c25b {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.icon-0c1b {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.next-ee2b {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.picture-888a {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.link-upper-0f56 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .link-upper-0f56 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.steel_ccc5 {
    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);
}

.steel_ccc5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.overlay-mini-6002 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hard_a784 {
    color: var(--text-gray);
    font-size: 1rem;
}

.huge_8f43 {
    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);
}

.sidebar-68c2 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.sidebar-68c2 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.gradient-4b10 { 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; }
.badge-tall-a640, .label_0a07 { max-width:100%; height:auto; }

.main_0ba1, .progress_19fe, .input_4465 { white-space:normal; }

.up_ee69,
.tabs-b9cb,
.footer_pressed_ace9,
.thumbnail_e381,
.text_upper_4a4b,
.advanced-679f {
  flex-wrap:wrap;
}

[class*="grid"],
.link-upper-0f56,
.heading_ca62,
.last-f325 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.search_medium_c318 img,
.tabs-b9cb img,
.backdrop_wide_c11f img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.container-6551, .tabs_9251,
.copper-848c, .mask_right_862e {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.hard-8918 { width:100%; overflow-x:auto; }
.hard-8918 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.notice_dirty_06e1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .notice_dirty_06e1 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.breadcrumb-8469 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.in_b431,
.video-9120,
.accent-selected-d48a,
.content_1885,
.caption_9152,
.link-upper-0f56,
.heading_ca62,
.last-f325,
.message_fd3d,
.gradient-bright-09d3,
.notice_dirty_06e1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .in_b431,
  .video-9120,
  .accent-selected-d48a,
  .content_1885,
  .caption_9152,
  .link-upper-0f56,
  .heading_ca62,
  .last-f325,
  .message_fd3d,
  .gradient-bright-09d3,
  .notice_dirty_06e1 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.item-small-dd81,
.tooltip-c60d,
.steel_ccc5,
.silver_fcac,
.sort_smooth_62ee,
.out_c821,
.white_de7e,
.breadcrumb-8469 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.left-a5ff,
.footer-88d0,
.heading_bronze_62e6 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.left-a5ff > *,
.footer-88d0 > *,
.heading_bronze_62e6 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 8806 */
.ghost-box-s1 {
  padding: 0.1rem;
  font-size: 14px;
  line-height: 1.2;
}
