/* {$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;
}

.list_huge_1666 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.west-3daa {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .west-3daa {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .west-3daa {
        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 */
.blue_7a76 {
    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);
}

.picture_9fd3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .picture_9fd3 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .plasma_66c3 {
        grid-column: 1;
    }
    
    .motion-372f {
        grid-column: 2;
    }
    
    .accordion-c5d4 {
        grid-column: 3;
    }
}

.plasma_66c3 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.plasma_66c3:hover img {
    transform: scale(1.05);
}

/* Navigation */
.surface_over_41c6 {
    display: none;
}

@media (min-width: 1024px) {
    .surface_over_41c6 {
        display: block;
    }
}

/* Grouped Navigation */
.west-3f3f {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.medium_2faf {
    position: relative;
}

.text-fresh-aa07 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.medium_2faf .hidden_659e {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.hidden_659e {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.frame-dec6 {
    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;
}

.frame-dec6:hover,
.frame-dec6.fn-active-7341 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.feature-4ad0 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .feature-4ad0 {
        display: flex;
    }
}

/* Mobile Register Button */
.motion-372f {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .motion-372f {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.black_950a {
    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;
}

.black_950a::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 */
.accordion-c5d4 {
    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) {
    .accordion-c5d4 {
        display: none;
    }
}

.accordion-c5d4 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.accordion-c5d4.fn-active-7341 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.accordion-c5d4.fn-active-7341 span:nth-child(2) {
    opacity: 0;
}

.accordion-c5d4.fn-active-7341 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.status_ece2 {
    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;
}

.status_ece2.fn-active-7341 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.prev-9976 {
    overflow: hidden;
}

.outer_4ec1 {
    list-style: none;
    padding: 0.75rem 0;
}

.simple-9ef9 {
    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;
}

.simple-9ef9:hover,
.simple-9ef9.fn-active-7341 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.simple-9ef9.list_e4b7 {
    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;
}

.simple-9ef9.list_e4b7::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 */
.card-inner-082d {
    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;
}

.feature-pressed-d000 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.feature-pressed-d000:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.carousel_44b5 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.carousel_44b5:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.feature-purple-1c2a {
    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;
}

.feature-purple-1c2a:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.nav-left-c442 {
    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;
}

.button_af52 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.button_af52:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.layout-d97d {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.layout-d97d:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.pro_40e6 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.pro_40e6: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);
}

.outline_1733 {
    font-size: 1em;
    font-weight: 700;
}

.column-daec {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.black_fd9d {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.black_fd9d::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;
}

.dim_92f0 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .dim_92f0 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.info_2064 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.badge-cold-4774 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.bronze_c796 {
    margin-bottom: 2rem;
}

.secondary-1b71 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .secondary-1b71 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.widget_2266 {
    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);
}

.hidden_gas_fe4b {
    font-size: 1.5rem;
}

.accordion-4f29 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.icon-static-e8e8 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.action_5527 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.action_5527:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.item-bc27 {
    text-align: center;
    margin-bottom: 3rem;
}

.panel-center-9024 {
    margin-bottom: 1rem;
}

.tag_hard_f493 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.secondary-73de {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .secondary-73de {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .secondary-73de.alert_e9dd {
        direction: rtl;
    }
    
    .secondary-73de.alert_e9dd > * {
        direction: ltr;
    }
}

.silver_fb39 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.silver_fb39:first-child {
    margin-top: 0;
}

.chip_hot_9863 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.info_9993 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.info_9993:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.feature-02a1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .feature-02a1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.prev_b77d {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.texture_complex_dc0a {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.row-0f73 {
    list-style: none;
}

.row-0f73 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.row-0f73 li:last-child {
    border-bottom: none;
}

/* Games Features */
.rough_244c {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.notice-094b {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.tabs_fffe {
    font-size: 2rem;
    flex-shrink: 0;
}

.wrapper-hard-5bae {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.button_huge_360f {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.pink_db03 {
    margin: 2rem 0;
}

.component_ca40 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.description-last-fdd0 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.aside-9a21 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.badge_first_b7af {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.box-289e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .box-289e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mini_29de {
    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);
}

.mini_29de:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.badge-5e01 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.input-f6b6 {
    font-size: 1.5rem;
}

.full_9898 {
    color: var(--accent-color);
    margin: 0;
}

.overlay_solid_3357 {
    list-style: none;
}

.overlay_solid_3357 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.overlay_solid_3357 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.pro_1f72 {
    margin: 2rem 0;
}

.shadow_355f {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.hidden-5a9e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .hidden-5a9e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.liquid-9441 {
    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);
}

.picture-b469 {
    font-size: 1.25rem;
}

.bright_c1d1 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.easy-4f17,
.accordion_rough_d168 {
    text-align: center;
    margin: 2rem 0;
}

.focus-basic-6297,
.breadcrumb-a6aa {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.description-912c {
    margin: 2rem 0;
    text-align: center;
}

.dark_cf17 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.dark_cf17::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.panel_current_48d9 {
    position: relative;
    z-index: 1;
}

.outer-5578 {
    margin-bottom: 1rem;
}

.progress-a0e1 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.disabled_acae {
    margin-bottom: 3rem;
}

.tag-iron-f0c5 {
    margin-top: 3rem;
}

.badge-eb42 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .badge-eb42 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.badge-eb42 .widget_2266 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.description_f3b3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.easy-bc20 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.badge_purple_94f2 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.avatar-7a11 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .avatar-7a11 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .avatar-7a11 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.surface-f5d4 {
    margin-bottom: 1rem;
}

.breadcrumb_04c8 img {
    margin-bottom: 1rem;
}

.heading_1320 {
    color: var(--text-gray);
    line-height: 1.6;
}

.outline-motion-1a82 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.text_02e5 {
    list-style: none;
}

.text_02e5 li {
    margin-bottom: 0.5rem;
}

.text_02e5 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.text_02e5 a:hover {
    color: var(--accent-color);
}

.dynamic_1830 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tabs-huge-96d7 {
    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);
}

.tabs-huge-96d7:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.container-5ac8 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.container-5ac8 p {
    margin-bottom: 0.25rem;
}

.picture-focused-6919 {
    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) {
    .picture-focused-6919 {
        flex-direction: row;
    }
}

.modal-focused-0dd9 {
    text-align: center;
}

@media (min-width: 768px) {
    .modal-focused-0dd9 {
        text-align: left;
    }
}

.modal-focused-0dd9 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.sidebar_north_b32f {
    font-size: 0.75rem !important;
}

.green_a754 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.banner-c6b4 {
    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);
    }
}

.panel_orange_0612 {
    animation: fadeInUp 0.6s ease-out;
}

.accordion-b6bd {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.card_soft_4132 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .card_soft_4132 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.label_complex_1fbc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .label_complex_1fbc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.bottom_c4c8 {
    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);
}

.bottom_c4c8 .tabs_fffe {
    font-size: 1.25rem;
}

.bottom_c4c8 .border-thick-05e1 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.summary-stone-e0e6 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .summary-stone-e0e6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tooltip-0cc0 {
    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);
}

.tooltip-0cc0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.table-668a {
    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);
}

.mask-8fdb {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.light_e65e {
    color: var(--text-gray);
    line-height: 1.6;
}

.message_selected_ccd1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.module_black_0599 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.module_black_0599 .wrapper-hard-5bae {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.module_black_0599 .button_huge_360f {
    color: var(--text-gray);
    line-height: 1.6;
}

.notice_38d2 {
    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);
}

.card_copper_d32a {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.card_copper_d32a img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.card_copper_d32a img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.shade_easy_8df5 {
    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);
}

.alert_silver_fa9f {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.texture_f673 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.texture_f673 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.texture_f673 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);
}

.texture_f673 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.texture_f673 input::placeholder {
    color: var(--text-muted);
}

.out_a3f1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.white_ec43 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.white_ec43 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.filter_589c {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.filter_589c:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.hidden-5a9e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hidden-5a9e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.liquid-9441 {
    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);
}

.liquid-9441 .picture-b469 {
    font-size: 1.25rem;
}

.liquid-9441 .bright_c1d1 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.solid_2378 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.right_67d5 {
    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);
}

.right_67d5 .tabs_fffe {
    font-size: 2rem;
    flex-shrink: 0;
}

.right_67d5 .wrapper-hard-5bae {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.right_67d5 .button_huge_360f {
    color: var(--text-gray);
    line-height: 1.6;
}

.header_3131 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.slow_1113 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.slow_1113 .layout_b5e5 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.slow_1113 .breadcrumb-2321 {
    color: var(--text-gray);
    line-height: 1.6;
}

.table_stone_c564 {
    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);
}

.short_2178 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .short_2178 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.status_bcf3 {
    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);
}

.status_bcf3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.wood-6ce7 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.green-5eb6 {
    flex: 1;
}

.block-4eee {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.pagination_0aaa {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.notice-b64c {
    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);
}

.notice-b64c:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.summary_steel_c72e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .summary_steel_c72e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.outline-5aac {
    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);
}

.outline-5aac:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pattern_aef1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.primary_43e7 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.first-362c {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.current_892a {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.basic_d085 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.in-fc45 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.bright-481e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.bright-481e .warm_e7eb {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.bright-481e .accent-dbee {
    color: var(--text-gray);
    line-height: 1.6;
}

.tag_1c2c {
    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);
}

.old_4e07 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.stone-ff4b {
    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);
}

.stone-ff4b .tabs_fffe {
    font-size: 2rem;
    flex-shrink: 0;
}

.stone-ff4b .wrapper-hard-5bae {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.stone-ff4b .button_huge_360f {
    color: var(--text-gray);
    line-height: 1.6;
}

.texture-4a6c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .texture-4a6c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card-under-04fc {
    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);
}

.card-under-04fc:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.column_bottom_eeac {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .column_bottom_eeac {
        grid-template-columns: repeat(4, 1fr);
    }
}

.inner-bbec {
    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);
}

.inner-bbec:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.basic_42d2 {
    font-size: 2rem;
    flex-shrink: 0;
}

.silver_6672 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.description-last-fdd0 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.hover-west-ac90 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.yellow_a2a8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sidebar-3cd0 {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    transition: var(--transition-normal);
}

.sidebar-3cd0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.status_6b8f {
    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);
}

.gallery-right-691b {
    flex: 1;
}

.paragraph_ba1d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.lite-f0b1 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.highlight-1397 {
    color: var(--text-gray);
    line-height: 1.6;
}

.glass_9abd {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.nav-outer-0ad3 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.nav-outer-0ad3 .layout_b5e5 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.nav-outer-0ad3 .breadcrumb-2321 {
    color: var(--text-gray);
    line-height: 1.6;
}

.accordion_rough_d168 {
    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);
}

.message_05cc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .message_05cc {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.orange-bc9b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .orange-bc9b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tabs_278d {
    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_278d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.block-ea82 {
    font-size: 2rem;
    flex-shrink: 0;
}

.lower_8b9b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.item-57ce {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.card-fea2 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.out-e20a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.element_2ab3 {
    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);
}

.preview-5731 {
    font-size: 2rem;
    flex-shrink: 0;
}

.action_d7cd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.accordion_hot_a5ab {
    color: var(--text-gray);
    line-height: 1.6;
}

.old_4e07 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.stone-ff4b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.stone-ff4b .wrapper-hard-5bae {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.stone-ff4b .button_huge_360f {
    color: var(--text-gray);
    line-height: 1.6;
}

.image-5dde {
    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);
}

.next-809c {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .next-809c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .next-809c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.block-bronze-23a2 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.block-bronze-23a2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pagination-selected-8974 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.banner_b426 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.header-bronze-4876 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.hidden-brown-8f20 {
    padding: 1.5rem;
}

.light-6215 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.green_306e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.green_306e 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;
}

.green_306e li:last-child {
    border-bottom: none;
}

.green_306e li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.upper_7ff6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .upper_7ff6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.huge_96fc {
    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);
}

.huge_96fc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.content_active_4f8a {
    font-size: 2rem;
    flex-shrink: 0;
}

.outline-90e1 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.form_brown_a73b {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.iron_0863 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.status_action_f1a0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.modal_f312 {
    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);
}

.preview_west_d00d {
    font-size: 2rem;
    flex-shrink: 0;
}

.background_dbb7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tooltip_7f7e {
    color: var(--text-gray);
    line-height: 1.6;
}

.image-large-048c {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.dark_f227 {
    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);
}

.stale_bc91 {
    text-align: center;
}

.feature-2cda {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.module_in_ef73 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.row_advanced_2f5d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.solid-449d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.solid-449d .wrapper-hard-5bae {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.solid-449d .button_huge_360f {
    color: var(--text-gray);
    line-height: 1.6;
}

.dirty-365b {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .dirty-365b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .dirty-365b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.status-e5ad {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.status-e5ad:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.steel-8a48 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.photo_fe6b {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.wrapper-hard-5bae {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.blue-1218 {
    padding: 1.5rem;
}

.button_huge_360f {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.medium-f7f0 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.medium-f7f0 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;
}

.medium-f7f0 li:last-child {
    border-bottom: none;
}

.medium-f7f0 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.bottom_2853 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.action-aad1 {
    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);
}

.action-aad1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.notification_hovered_21bf {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.background-brown-d234 {
    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);
}

.table-668a {
    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;
}

.mask-8fdb {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.light_e65e {
    color: var(--text-gray);
    line-height: 1.6;
}

.accordion_22b9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.grid_next_cc7e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.alert-fixed-827d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.panel_7c91 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.silver_6eb1 {
    display: flex;
    gap: 1rem;
}

.silver_6eb1 .summary_d153 {
    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;
}

.focus_advanced_b463 {
    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);
}

.upper-dbcd {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.picture-fc93 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.picture-fc93 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;
}

.picture-fc93 li:last-child {
    border-bottom: none;
}

.picture-fc93 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.notice-dd87 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .notice-dd87 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .notice-dd87 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hero_blue_41d2 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.hero_blue_41d2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gallery-blue-f056 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.image-gold-8de6 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.warm_e7eb {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.aside_dim_f3b3 {
    font-size: 1rem;
}

.alert-south-eed7 {
    padding: 1.5rem;
}

.accent-dbee {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.table_9b05 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.table_9b05 .stale_bc91 {
    text-align: center;
}

.table_9b05 .module_in_ef73 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.table_9b05 .silver-0cd1 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.tertiary-c826 {
    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);
}

.tertiary-c826:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.hero_c8bb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hero_c8bb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.logo_2318 {
    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);
}

.logo_2318:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gallery_ee99 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.form-1b22 {
    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);
}

.tiny_ff62 {
    font-size: 2rem;
    flex-shrink: 0;
}

.accordion-west-9fa5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.logo_pro_c696 {
    color: var(--text-gray);
    line-height: 1.6;
}

.texture_848c {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.slider-light-4a55 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dropdown_746f {
    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);
}

.simple-2a5d {
    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;
}

.simple-2a5d.header_d886 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.simple-2a5d.lite_1af7 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.simple-2a5d.gallery_warm_bce5 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.simple-2a5d.tiny_e7f4 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.simple-2a5d.notification_c1ee {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.picture_black_69f9 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.accent_ed62 {
    color: var(--text-gray);
    line-height: 1.6;
}

.filter_3709 {
    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);
}

.video_e1be {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.header_3131 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.header_3131 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;
}

.header_3131 li:last-child {
    border-bottom: none;
}

.header_3131 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.basic_c66e {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .basic_c66e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .basic_c66e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stone_e865 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.stone_e865:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.stone_e865.shade_3832 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .stone_e865.shade_3832 {
        grid-column: span 3;
    }
}

.wrapper-66d0 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.stone_e865.shade_3832 .wrapper-66d0 {
    background: rgba(6, 182, 212, 0.1);
}

.dim-3b98 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.notice-iron-012d {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.stone_e865.shade_3832 .notice-iron-012d {
    color: var(--info-color);
}

.left_f385 {
    padding: 1.5rem;
    text-align: center;
}

.advanced-b285 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.stone_e865.shade_3832 .advanced-b285 {
    color: var(--info-color);
}

.tertiary-9513 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.current_ac5b {
    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 */
.fresh_becb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .fresh_becb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.paragraph_fast_5f56 {
    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);
}

.paragraph_fast_5f56:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.photo_last_ec69 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.right_67d5 {
    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);
}

.picture-b469 {
    font-size: 2rem;
    flex-shrink: 0;
}

.mini-f43f {
    flex: 1;
}

.shadow_355f {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.description_wide_b05f {
    color: var(--text-gray);
    line-height: 1.6;
}

.pagination-in-ac1a {
    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);
}

.backdrop-pressed-6639 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.hero_43fe {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.banner-c6b4 {
    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);
}

.progress-e010 {
  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);
}

.progress-e010 .stale_bc91 {
    text-align: center;
}

.progress-e010 .feature-2cda {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.progress-e010 .module_in_ef73 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.row_3a95 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.block-d4b8 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tertiary-orange-c848 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tag_lower_11f8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.filter_over_6dd5 {
    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);
}

.nav_3125 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.section-023a {
    color: var(--text-gray);
    line-height: 1.6;
}

.tertiary-gold-6faa {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .tertiary-gold-6faa {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tertiary-gold-6faa {
        grid-template-columns: repeat(3, 1fr);
    }
}

.copper_c67e {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.copper_c67e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.motion-9988 {
    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);
}

.dark-9966 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.dirty-b344 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.under_ecb8 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.under_ecb8.paragraph-2a88 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.under_ecb8.clean-d558 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.under_ecb8.tall-fc47 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.gas-c082 {
    padding: 1.5rem;
    text-align: center;
}

.primary_slow_a790 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.active_7ebf {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.active_7ebf .input-7266 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.tall_c498 {
    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);
}

.tall_c498:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.frame_b0a8 {
  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);
}

.pink_c1cf {
    text-align: center;
}

.pink_c1cf .feature-2cda {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.pink_c1cf .module_in_ef73 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.filter_8329 { text-align: center; }
.text-d972 { text-align: left; }
.glass_a1f0 { text-align: right; }

.component-inner-b0ae { margin-bottom: 0; }
.avatar_1897 { margin-bottom: 0.5rem; }
.medium_a7ef { margin-bottom: 1rem; }
.large_871f { margin-bottom: 1.5rem; }
.pro_7ff9 { margin-bottom: 2rem; }

.gallery_iron_3176 { margin-top: 0; }
.full_4e2f { margin-top: 0.5rem; }
.badge_7f85 { margin-top: 1rem; }
.gradient_9133 { margin-top: 1.5rem; }
.description_a69c { margin-top: 2rem; }

.fn-hidden-7341 { display: none; }
.fn-visible-7341 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .black_fd9d {
        padding: 6rem 0 3rem;
    }
    
    .dim_92f0 {
        text-align: center;
    }
    
    .secondary-73de {
        text-align: center;
    }
    
    .secondary-1b71 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .blue_7a76,
    .status_ece2,
    .dark_cf17,
    .badge_purple_94f2 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .black_fd9d {
        background: none;
    }
}

/* Providers Section */
.south_8a06 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.surface-2bc8 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .surface-2bc8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .surface-2bc8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.surface-8c9f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.surface-8c9f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.cool-e731 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.east-614e {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.sidebar_057c {
    list-style: none;
    padding: 0;
}

.sidebar_057c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.sidebar_057c li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.main_slow_8cf4 {
    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);
}

.main_slow_8cf4 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.hidden_west_ec2f {
    padding: var(--section-padding);
}

.text-130d {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .text-130d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.aside_large_dae3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.aside_large_dae3:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.menu_1626 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.pink-11f3 {
    display: flex;
    flex-direction: column;
}

.rough-2d0b {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.slow-4a48 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.hero_next_8f4b {
    color: var(--accent-color);
}

.status_81aa {
    font-size: 1.25rem;
}

.slider_fe34 {
    margin-bottom: 1rem;
}

.slider_fe34 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.notification-bd2e {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.right_0f3d {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.stale_bc91 {
    text-align: center;
}

.feature-2cda {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.module_in_ef73 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.surface-bottom-867c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.clean-4ca6 {
    margin: 2rem 0;
}

.lite_b8d4 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.lite_b8d4 .tabs_fffe {
    font-size: 2rem;
    flex-shrink: 0;
}

.header_wide_9d7f {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.primary_8bde {
    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;
}

.primary_8bde:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.chip_right_7323 {
    font-size: 2rem;
}

.pressed_cf9f {
    display: flex;
    flex-direction: column;
}

.slow-5dbd {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.hero-fresh-86ee {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.sort-middle-dea8 {
    padding: var(--section-padding);
}

.plasma-3d3e {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .plasma-3d3e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .plasma-3d3e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.brown_64ff {
    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);
}

.brown_64ff:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.brown_64ff .feature-2cda {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.brown_64ff .module_in_ef73 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.brown_64ff .yellow-8d50 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.frame-a1e5 {
    margin-top: 4rem;
}

.silver-64bc {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.tag-fixed-e5f3 {
    overflow-x: auto;
}

.container-bottom-dfde {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.container-bottom-dfde thead {
    background: var(--accent-color);
}

.container-bottom-dfde th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.container-bottom-dfde td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.container-bottom-dfde tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.container-bottom-dfde tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.preview_0c1e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.caption_c5e6 {
    max-width: 900px;
    margin: 0 auto;
}

.lite-84f6 {
    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);
}

.lite-84f6:hover {
    border-color: var(--accent-color);
}

.stale_9192 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.stale_9192 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.prev_aaf5 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.lite-84f6.fn-active-7341 .prev_aaf5 {
    transform: rotate(45deg);
}

.notification_99da {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.lite-84f6.fn-active-7341 .notification_99da {
    max-height: 1000px;
}

.notification_99da p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.aside-6687 {
    padding: var(--section-padding);
}

.card_copper_d32a {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.motion-a68e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.status-out-2845 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .status-out-2845 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.lite_ef2b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tooltip_green_b2aa {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.grid-d7d6 {
    font-size: 2rem;
}

.rough-3cb5 {
    color: var(--text-white);
    margin: 0;
}

.feature-smooth-3aae {
    list-style: none;
    padding: 0;
}

.feature-smooth-3aae li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-smooth-3aae li:last-child {
    border-bottom: none;
}

.large-5862 {
    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);
}

.large-5862 p {
    color: var(--success-color);
    margin: 0;
}

.fresh-3a80 {
    margin-top: 3rem;
}

.upper-dbcd {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.outline_rough_0ff9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .outline_rough_0ff9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.content_new_dfd0 {
    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);
}

.media_2d86 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.content_new_dfd0 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.text-07bf {
    padding: var(--section-padding);
}

.description_stone_83a5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .description_stone_83a5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mask_smooth_ba86 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.mask_smooth_ba86:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.banner_5eaf {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.menu-soft-c3a3 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.icon_b71b {
    flex: 1;
}

.header_5c5e {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.article_basic_9ec8 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.video-out-bfc5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.table_7504 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table_7504:last-child {
    border-bottom: none;
}

/* Comparison Section */
.overlay-dynamic-2da7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.article-ba2e {
    padding: var(--section-padding);
}

.wood_890a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.sort_cold_bdf0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .sort_cold_bdf0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.menu_small_0d3e {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.box_22b8, .green_b2fc, .basic-0885 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.basic-0885 {
    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 */
.filter_fluid_2507 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.light_f448 {
    margin: 2rem 0;
}

.sidebar_new_2a16 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.module-pink-ac31 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.alert-47d1 {
    list-style: none;
    padding: 0;
}

.alert-47d1 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;
}

.alert-47d1 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.alert-47d1 li:last-child {
    border-bottom: none;
}

.hero_pro_edf9 {
    text-align: center;
    margin-top: 2rem;
}

.sort_soft_316b {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.active-0df1 {
    padding: var(--section-padding);
}

.main_fast_ede4 {
    margin: 2rem 0;
}

.menu_down_e6cf {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
    gap: 1.5rem;
    transition: var(--transition-normal);
}

@media (max-width: 768px) {
    .menu_down_e6cf {
        flex-direction: column;
        align-items: flex-start;
    }
}

.menu_down_e6cf:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.small_ef72 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.bronze-5c80 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.chip-c446 {
    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;
}

.stale_a089 {
    flex: 1;
}

.highlight_1b4c {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.box-6b9c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.tertiary_f87f {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.modal_ecf0 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .modal_ecf0 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.surface_old_463a {
    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);
}

.surface_old_463a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.surface_old_463a .feature-2cda {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.surface_old_463a .module_in_ef73 {
    color: var(--text-gray);
    font-size: 1rem;
}

.thumbnail-pressed-e2f9 {
    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);
}

.link_prev_8d2b {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.link_prev_8d2b strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.light_260d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .light_260d {
        grid-template-columns: 1fr 1fr;
    }
}

.clean_6f96 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.detail_out_9c46 {
    margin-bottom: 1.5rem;
}

.detail_out_9c46 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.detail_out_9c46 input,
.detail_out_9c46 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;
}

.detail_out_9c46 input:focus,
.detail_out_9c46 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.mask_f8a4 {
    width: 100%;
    margin-top: 1rem;
}

.popup_2a31 {
    display: flex;
    align-items: center;
}

.label-first-c72d {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.nav_stale_2486 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.lite_af85 {
    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;
}

.search-99f1 {
    color: var(--text-gray);
}

.old-73fe {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.fluid-4ca9 {
    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);
}

.fluid-4ca9 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.red_fc98 {
    margin-top: 3rem;
}

.item_plasma_6d2b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.module-dd74 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.east_cc3e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.frame_motion_3e23 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.frame_motion_3e23:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.prev-8f03 {
    padding: var(--section-padding);
}

.card-mini-b041 {
    margin: 2rem 0;
}

.widget-8bea {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.banner-723d {
    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;
}

.banner-723d:hover, .banner-723d.fn-active-7341 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.full-ba54 {
    display: none;
}

.full-ba54.fn-active-7341 {
    display: block;
}

.fluid-e3a0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.section_basic_8ef4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.backdrop_glass_0fba h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.backdrop_glass_0fba ul {
    list-style: none;
    padding: 0;
}

.backdrop_glass_0fba ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.backdrop_glass_0fba ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.alert_green_877d {
    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 */
.thumbnail_6e5c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.message_da66 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dirty-b19e {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.chip-2b86 {
    color: var(--accent-color);
    margin: 0;
}

.active_636b {
    display: flex;
    gap: 1.5rem;
}

.heading_4e82 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.wrapper_7f24 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.banner-yellow-5fab {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.banner-yellow-5fab.smooth-218b {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.banner-yellow-5fab.highlight_95ca {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.banner-yellow-5fab.link-static-ab83 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.fluid-1d6e {
    margin-top: 2rem;
}

.next_8ad8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.media_over_5fc4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .media_over_5fc4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.bronze-58b1 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.picture-cold-a481 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.active_bright_785a {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.last_e579 {
    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 */
.info_d49c {
    padding: var(--section-padding);
}

.iron_ce84 {
    margin: 2rem 0;
}

.disabled_0e89 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.fresh-e037 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.small-f9be {
    list-style: none;
    padding: 0;
}

.small-f9be 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;
}

.small-f9be li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.small-f9be li:last-child {
    border-bottom: none;
}

.carousel_d68f {
    margin: 2rem 0;
}

.filter_narrow_4e6e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.filter-9e3b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .filter-9e3b {
        grid-template-columns: repeat(2, 1fr);
    }
}

.panel_3d8b {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.glass_1833 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.upper_d0c8 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.panel_light_9e36 {
    margin-top: 2rem;
}

.block-4eee {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.stone-033e {
    list-style: none;
    padding: 0;
}

.breadcrumb_wood_cdfb {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.breadcrumb_wood_cdfb a {
    color: var(--accent-color);
    text-decoration: none;
}

.breadcrumb_wood_cdfb a:hover {
    text-decoration: underline;
}

.motion-2d30 {
    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 */
.block_copper_4f77 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.frame-bcbe {
    margin: 2rem 0;
}

.preview-fa52 {
    margin-bottom: 3rem;
}

.preview-fa52 .module-pink-ac31 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.tiny_1cce {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.sidebar-warm-4c51 {
    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);
}

.sidebar-warm-4c51:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.form_plasma_a0c7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .form_plasma_a0c7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.heading-c29e {
    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 */
.button_outer_1ba0 {
    padding: var(--section-padding);
}

.current-03e7 {
    margin: 2rem 0;
}

.icon_copper_f12a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.search-f572 {
    overflow-x: auto;
    margin: 2rem 0;
}

.list-in-38c9 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.outline_dim_96ef {
    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;
}

.picture-953e {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.panel-1df8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .panel-1df8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.background-brown-c509 {
    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-brown-c509 .tabs_fffe {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.background-brown-c509 .wrapper-hard-5bae {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.filter_c96a {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.shade-fast-2f32 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hover-static-002f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hover-static-002f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.picture-last-180d {
    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;
}

.picture-last-180d:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.yellow-611f {
    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);
}

.dynamic-0887 {
    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;
}

.nav_6477 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.info_6d1d {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.secondary_wide_23fb {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.filter_4699 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.heading-basic-d827 {
    color: var(--text-white);
    font-weight: 600;
}

.dynamic_8c80 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.detail_inner_086e {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.detail_inner_086e .summary_d153 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.wrapper_easy_a341 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .wrapper_easy_a341 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.popup-42c4 {
    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);
}

.popup-42c4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.popup-42c4 .feature-2cda {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.popup-42c4 .module_in_ef73 {
    color: var(--text-gray);
    font-size: 1rem;
}

.copper_4a3f {
    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);
}

.fluid_0c96 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.fluid_0c96 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.out-e20a {
    margin: 2rem 0;
}

.element_2ab3 {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.1);
    transition: var(--transition-normal);
}

.element_2ab3:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.preview-5731 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.wood-64da {
    flex: 1;
}

.action_d7cd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.accordion_hot_a5ab {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.old_4e07 {
    margin: 2rem 0;
}

.stone-ff4b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.stone-ff4b .wrapper-hard-5bae {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.stone-ff4b .button_huge_360f {
    color: var(--text-gray);
    margin: 0;
}

.image-5dde {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.image-5dde .focus-basic-6297 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.filter_c96a {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.status_6b8f {
    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;
}

.gallery-right-691b {
    flex: 1;
}

.lite-f0b1 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.highlight-1397 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.table-668a {
    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;
}

.backdrop-rough-5061 {
    flex: 1;
}

.mask-8fdb {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.light_e65e {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.alert-fixed-827d {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.panel_7c91 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.silver_6eb1 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.silver_6eb1 .summary_d153 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.focus_advanced_b463 {
    margin-top: 2rem;
}

.focus_advanced_b463 .upper-dbcd {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.tertiary-b8ac {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dark_f227 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .dark_f227 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dark_f227 .stale_bc91 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.row_advanced_2f5d {
    margin: 2rem 0;
}

.solid-449d {
    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 */
.pattern_stone_5dd8 {
    padding: var(--section-padding);
}

.blue-1218 {
    margin-top: 1rem;
}

.medium-f7f0 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.medium-f7f0 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.medium-f7f0 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.lower_0951 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.active_middle_e329 {
    margin: 2rem 0;
}

.popup_436e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.shadow-advanced-d682 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.hard-101c {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.bright-0fc9 {
    margin: 2rem 0;
}

.element_8f43 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.element_8f43 .module-pink-ac31 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.menu-96a5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .menu-96a5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.solid-14e6 {
    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);
}

.block_action_77e7 {
    color: var(--text-white);
    font-weight: 600;
}

.hidden-out-63be {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.header-active-0ba3 {
    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);
}

.header-active-0ba3 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.image_819d {
    padding: var(--section-padding);
}

.wood_5662 {
    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;
}

.wood_5662:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.advanced-16e3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.advanced-16e3 .media_2d86 {
    font-size: 2rem;
    flex-shrink: 0;
}

.advanced-16e3 .overlay-2329 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.pressed_6039 {
    flex: 1;
}

.component_86e4 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.left-7be2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.left-7be2 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.left-7be2 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.avatar-steel-4684 {
    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);
}

.avatar-steel-4684 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.avatar-steel-4684 strong {
    color: var(--warning-color);
}

/* Slots Section */
.right-40b1 {
    padding: var(--section-padding);
}

.basic_d085 {
    margin: 2rem 0;
}

/* Table Games Section */
.link_7293 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.in-fc45 {
    margin: 2rem 0;
}

.bright-481e {
    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);
}

.bright-481e:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.bright-481e .warm_e7eb {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.bright-481e .accent-dbee {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.tag_1c2c {
    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);
}

.tag_1c2c .focus-basic-6297 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.clean-aec9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.item_pink_db3d {
    margin: 2rem 0;
}

.item_49ef {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.badge_b2c5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.plasma_3136 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.accordion-liquid-d848 {
    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);
}

.accordion-liquid-d848:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.accordion-liquid-d848.fn-active-7341 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.shade-right-e1b2 {
    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);
}

.overlay_d02d {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.overlay_d02d strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.nav-light-63ed {
    padding: var(--section-padding);
}

.summary-under-34a7 {
    margin: 2rem 0;
}

.red_849d {
    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);
}

.red_849d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .red_849d {
        flex-direction: column;
        align-items: flex-start;
    }
}

.aside_bronze_d81e {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.down-9424 {
    flex: 1;
}

.input_08b2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.block_ab2a {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.shade_pressed_c8ee {
    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;
}

.link_5dd0 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.active_hovered_fccf {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.thumbnail-fast-e8fc {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.complex-07ed {
    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;
}

.complex-07ed:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.modal_54fa {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.message-988b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.message-988b strong {
    color: var(--accent-color);
}

/* New Games Section */
.aside-2362 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tag-e3f4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .tag-e3f4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tag-e3f4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fixed_5889 {
    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;
}

.fixed_5889:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.tag-current-b6ae {
    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;
}

.thumbnail_new_174b {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.steel-facc {
    font-size: 2rem;
}

.container_3ede {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.mask-active-fe5d {
    flex: 1;
}

.layout_2ea3 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.secondary-gold-1483 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.layout-rough-9b08 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.banner_95db {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.avatar-c9ed {
    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;
}

.row_48d3 {
    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;
}

.row_48d3:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.secondary_center_b517 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.main_deda {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.icon-tiny-c637 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .icon-tiny-c637 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.outline-4c32 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--secondary-bg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pagination_simple_9511 {
    color: var(--text-white);
    font-weight: 600;
}

.small_28fd {
    color: var(--accent-color);
    font-weight: 600;
}

.carousel-lite-5132 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.carousel-lite-5132 strong {
    color: var(--accent-color);
}

/* Security Section */
.grid_0bc6 {
    padding: var(--section-padding);
}

/* Benefits Section */
.feature_0670 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.silver-abe5 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.copper-2c4b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.nav-short-6d92 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.advanced-b692 {
    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) {
    .advanced-b692 {
        flex-direction: column;
        gap: 1rem;
    }
}

.advanced-b692:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.advanced-b692 .table-668a {
    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;
}

.advanced-b692 .backdrop-rough-5061 {
    flex: 1;
}

.advanced-b692 .mask-8fdb {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.advanced-b692 .light_e65e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.focused-3026 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.focused-3026 .shadow_355f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.focused-3026 .solid_2378 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.focused-3026 .solid_2378 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.focused-3026 .solid_2378 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.out-f0e8 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.medium-2b1c {
    padding: var(--section-padding);
}

.thumbnail-thick-bffb {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .thumbnail-thick-bffb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid-black-2d3c {
    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);
}

.grid-black-2d3c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.grid-black-2d3c .table_8d3a {
    font-size: 2rem;
    flex-shrink: 0;
}

.grid-black-2d3c .focus_out_3b12 {
    flex: 1;
}

.grid-black-2d3c .layout_b5e5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.grid-black-2d3c .stone-5022 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.top-438d {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.top-438d .paragraph-pro-d148 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.top-438d .gradient_left_bed2 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.top-438d .gradient_left_bed2 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);
}

.top-438d .gradient_left_bed2 li:last-child {
    border-bottom: none;
}

.top-438d .gradient_left_bed2 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;
}

.top-438d .gradient_left_bed2 li strong {
    color: var(--text-white);
}

.form_bright_7b3a {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.form_bright_7b3a p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.form_bright_7b3a strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.modal_bright_7bb4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.info-in-b9ef {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .info-in-b9ef {
        grid-template-columns: repeat(2, 1fr);
    }
}

.brown-5b00 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.brown-5b00:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.rough_fc4a {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.advanced-875b {
    font-size: 2rem;
}

.box-stone-ad7b {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.wide_9442 {
    flex: 1;
}

.hard_220c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hard_220c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.hard_220c li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.active-wood-de9f {
    margin-top: 3rem;
}

.disabled_0e89 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.fresh-e037 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.small-f9be {
    list-style: none;
    padding: 0;
    margin: 0;
}

.small-f9be li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.small-f9be li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.small-f9be li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.orange-4d53 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.steel_3395 {
    margin: 2rem 0;
}

.link_small_e64e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.link_small_e64e .module-pink-ac31 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.blue_8002 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .blue_8002 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.small_1dfe {
    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);
}

.small_1dfe:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.black-edb6 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.east-ac32 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.backdrop_126b {
    padding: var(--section-padding);
}

.wide-c9d8 {
    margin: 2rem 0;
}

.heading_19f2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .heading_19f2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .heading_19f2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.rough_bcf6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.rough_bcf6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.widget-b782 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.nav-simple-93e4 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.content-small-43b7 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.content-small-43b7.focus-5229 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.image_fa8b {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.logo-2caa {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.slider_inner_38d6 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fluid_95a4 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.active_action_c412 {
    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);
}

.active_action_c412 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.active_action_c412 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.heading-b951 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.up-8fa8 {
    margin: 2rem 0;
}

.under-e687 {
    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) {
    .under-e687 {
        flex-direction: column;
        gap: 1rem;
    }
}

.under-e687:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.under-e687::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);
}

.heading_878e {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.container-5d06 {
    flex: 1;
}

.logo-1b36 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.blue_ec62 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blue_ec62 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.hero-c3ca {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.notification_3cef {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tall_06e1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .tall_06e1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.border_5665 {
    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);
}

.fixed_7a44 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.breadcrumb_stone_c23b {
    flex: 1;
}

.alert_simple_6d52 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.aside_fresh_d0c8 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.bottom-7739 {
    margin-top: 2rem;
    text-align: center;
}

.layout-slow-1c6b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.layout-slow-1c6b strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.hero_c8bb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hero_c8bb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.logo_2318 {
    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);
}

.logo_2318:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.logo_2318 .content_active_4f8a {
    font-size: 2rem;
    flex-shrink: 0;
}

.logo_2318 .outline-90e1 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.logo_2318 .form_brown_a73b {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.logo_2318 .iron_0863 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.active_d3dd {
    padding: var(--section-padding);
}

.form-1b22 .content-6a75 {
    flex: 1;
}

/* Promo Calendar Section */
.accordion_east_2b17 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.wide_3b59 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .wide_3b59 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.shadow-27b8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.caption-hovered-2185 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.yellow_c536 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lite_5707 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--secondary-bg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.element_c049 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.table-4941 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.short_f64d {
    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);
}

.short_f64d p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.short_f64d strong {
    color: var(--accent-color);
}

/* Requirements Section */
.carousel-brown-87eb {
    padding: var(--section-padding);
}

.cold-9f07 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .cold-9f07 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stone_5470 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.over_bb52 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.green-bdcb {
    list-style: none;
    padding: 0;
    margin: 0;
}

.green-bdcb li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.lower-7634 {
    margin-top: 3rem;
}

.lower-7634 .disabled_0e89 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.lower-7634 .fresh-e037 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.lower-7634 .small-f9be {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.lower-7634 .small-f9be li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.lower-7634 .small-f9be li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.lower-7634 .small-f9be li strong {
    color: var(--warning-color);
}

.progress_821e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.progress_821e strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.list-65d1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.card_inner_4330 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .card_inner_4330 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.box-green-545e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.box-green-545e .module-pink-ac31 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.center-d0f1 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.up-abe1 {
    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);
}

.up-abe1:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.info_d135 {
    font-size: 2rem;
    flex-shrink: 0;
}

.primary-left-22c0 {
    flex: 1;
}

.pressed_012a {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.footer-f1d5 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.aside-old-29c4 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.preview-7544 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.mask-ad7c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .mask-ad7c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.menu-yellow-e302 {
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.menu-yellow-e302:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.component-action-0790 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.primary-716c {
    color: var(--text-gray);
    font-size: 1rem;
}

.link_prev_8d2b {
    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_soft_422f {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.sidebar_soft_422f strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.west-3daa { 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; }
.action_5527, .info_9993 { max-width:100%; height:auto; }

.card-inner-082d, .feature-purple-1c2a, .nav-left-c442 { white-space:normal; }

.dim_92f0,
.secondary-73de,
.fresh_becb,
.hero_c8bb,
.old_4e07,
.tertiary-gold-6faa {
  flex-wrap:wrap;
}

[class*="grid"],
.mask-ad7c,
.heading_19f2,
.badge-eb42 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.black_fd9d img,
.secondary-73de img,
.icon-static-e8e8 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.info_2064, .badge-cold-4774,
.panel-center-9024, .tag_hard_f493 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.tag-fixed-e5f3 { width:100%; overflow-x:auto; }
.tag-fixed-e5f3 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.surface-2bc8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .surface-2bc8 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.surface-8c9f {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.plasma-3d3e,
.fresh_7096,
.item_down_27b7,
.secondary-bright-e810,
.modal_ecf0,
.mask-ad7c,
.heading_19f2,
.badge-eb42,
.frame_b0a8,
.summary-under-34a7,
.surface-2bc8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .plasma-3d3e,
  .fresh_7096,
  .item_down_27b7,
  .secondary-bright-e810,
  .modal_ecf0,
  .mask-ad7c,
  .heading_19f2,
  .badge-eb42,
  .frame_b0a8,
  .summary-under-34a7,
  .surface-2bc8 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.brown_64ff,
.surface_old_463a,
.menu-yellow-e302,
.widget_2266,
.rough_bcf6,
.pink_c1cf,
.red_849d,
.surface-8c9f {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.bright_0aa7,
.mask-in-4cf0,
.under_0b5f {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.bright_0aa7 > *,
.mask-in-4cf0 > *,
.under_0b5f > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 32bd */
.ghost-box-i6 {
  padding: 0.1rem;
  font-size: 14px;
  line-height: 1.0;
}
