/* {$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;
}

.nav-868f {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.feature-e6e2 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .feature-e6e2 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .feature-e6e2 {
        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 */
.summary_6f5b {
    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);
}

.orange_604b {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .orange_604b {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .heading_right_6a1e {
        grid-column: 1;
    }
    
    .overlay-advanced-dd4c {
        grid-column: 2;
    }
    
    .bronze-fbfe {
        grid-column: 3;
    }
}

.heading_right_6a1e img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.heading_right_6a1e:hover img {
    transform: scale(1.05);
}

/* Navigation */
.shade_a040 {
    display: none;
}

@media (min-width: 1024px) {
    .shade_a040 {
        display: block;
    }
}

/* Grouped Navigation */
.input_feeb {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.bronze-34df {
    position: relative;
}

.iron-3337 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.bronze-34df .first_3ef3 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.first_3ef3 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.accordion-complex-1f9f {
    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;
}

.accordion-complex-1f9f:hover,
.accordion-complex-1f9f.fn-active-a205 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.stale-9e35 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .stale-9e35 {
        display: flex;
    }
}

/* Mobile Register Button */
.overlay-advanced-dd4c {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .overlay-advanced-dd4c {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.label-89b4 {
    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;
}

.label-89b4::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 */
.bronze-fbfe {
    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) {
    .bronze-fbfe {
        display: none;
    }
}

.bronze-fbfe span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.bronze-fbfe.fn-active-a205 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.bronze-fbfe.fn-active-a205 span:nth-child(2) {
    opacity: 0;
}

.bronze-fbfe.fn-active-a205 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.fixed-3d1c {
    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;
}

.fixed-3d1c.fn-active-a205 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.popup_c306 {
    overflow: hidden;
}

.button-in-b16f {
    list-style: none;
    padding: 0.75rem 0;
}

.stone_11fd {
    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;
}

.stone_11fd:hover,
.stone_11fd.fn-active-a205 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.stone_11fd.basic_0349 {
    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;
}

.stone_11fd.basic_0349::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--primary-gradient);
    border-radius: inherit;
    z-index: -1;
    filter: blur(8px);
    opacity: 0.7;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.02);
    }
}

/* Button Styles */
.link_wide_70ad {
    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;
}

.first_b90a {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.first_b90a:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.huge_fca5 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.huge_fca5:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.sidebar_clean_b3e3 {
    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;
}

.sidebar_clean_b3e3:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.tag-e3d7 {
    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;
}

.title-out-671d {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.title-out-671d:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.item_bright_c53a {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.item_bright_c53a:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.hard-df2b {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.hard-df2b: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);
}

.hero_middle_2054 {
    font-size: 1em;
    font-weight: 700;
}

.overlay_1542 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.current-49d6 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.current-49d6::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;
}

.dark-117b {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .dark-117b {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.stale-591e {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.disabled-up-d0c2 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.badge-warm-44e4 {
    margin-bottom: 2rem;
}

.old_e94f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .old_e94f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.table-gas-e69c {
    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);
}

.wrapper_black_f3e4 {
    font-size: 1.5rem;
}

.accent_slow_cf85 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.secondary-medium-519d {
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-ab72 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.menu-ab72:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.hidden-east-b04a {
    text-align: center;
    margin-bottom: 3rem;
}

.popup_66e5 {
    margin-bottom: 1rem;
}

.tag_prev_6c8d {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.description-c419 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .description-c419 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .description-c419.input-1b78 {
        direction: rtl;
    }
    
    .description-c419.input-1b78 > * {
        direction: ltr;
    }
}

.input-109b {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.input-109b:first-child {
    margin-top: 0;
}

.accent_fast_ac64 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.table-easy-84df {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.table-easy-84df:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.summary-fcd4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .summary-fcd4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.steel-6157 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.image-action-63f0 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.badge_wide_f269 {
    list-style: none;
}

.badge_wide_f269 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.badge_wide_f269 li:last-child {
    border-bottom: none;
}

/* Games Features */
.sort_98d7 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.alert_8a93 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.north_0a3e {
    font-size: 2rem;
    flex-shrink: 0;
}

.search-static-6991 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.clean_2f6d {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.advanced_5455 {
    margin: 2rem 0;
}

.accordion-in-873f {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.tertiary_cool_b1ae {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.mask-slow-2fe5 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.out-f3cc {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.sidebar-gold-1fb6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .sidebar-gold-1fb6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.banner-top-e4d8 {
    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);
}

.banner-top-e4d8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.hero_434c {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.breadcrumb_e0bd {
    font-size: 1.5rem;
}

.info-white-4b35 {
    color: var(--accent-color);
    margin: 0;
}

.selected_9962 {
    list-style: none;
}

.selected_9962 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.selected_9962 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.preview_warm_e63a {
    margin: 2rem 0;
}

.paper_b286 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.active_dim_70dd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .active_dim_70dd {
        grid-template-columns: repeat(4, 1fr);
    }
}

.simple-ed9b {
    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);
}

.full_c4ee {
    font-size: 1.25rem;
}

.last_e40e {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.complex-a580,
.picture_36bf {
    text-align: center;
    margin: 2rem 0;
}

.center-0f87,
.accent_full_f7d6 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.sidebar-prev-b5ea {
    margin: 2rem 0;
    text-align: center;
}

.thick_5f17 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.thick_5f17::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;
}

.primary_4718 {
    position: relative;
    z-index: 1;
}

.outline-bd24 {
    margin-bottom: 1rem;
}

.purple-fbaa {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.active-9c45 {
    margin-bottom: 3rem;
}

.background_2a02 {
    margin-top: 3rem;
}

.fast_29de {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .fast_29de {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fast_29de .table-gas-e69c {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.content_outer_3ce5 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.static_c404 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.basic-cd26 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.tabs_8f6d {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .tabs_8f6d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tabs_8f6d {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.picture_bc99 {
    margin-bottom: 1rem;
}

.paper_4585 img {
    margin-bottom: 1rem;
}

.texture-ed81 {
    color: var(--text-gray);
    line-height: 1.6;
}

.alert-336b {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.filter_red_2ce4 {
    list-style: none;
}

.filter_red_2ce4 li {
    margin-bottom: 0.5rem;
}

.filter_red_2ce4 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.filter_red_2ce4 a:hover {
    color: var(--accent-color);
}

.warm-a4a5 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.table-8d05 {
    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);
}

.table-8d05:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.hidden-pink-2c38 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.hidden-pink-2c38 p {
    margin-bottom: 0.25rem;
}

.white-b867 {
    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) {
    .white-b867 {
        flex-direction: row;
    }
}

.gradient-a306 {
    text-align: center;
}

@media (min-width: 768px) {
    .gradient-a306 {
        text-align: left;
    }
}

.gradient-a306 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.alert_slow_c80e {
    font-size: 0.75rem !important;
}

.simple-9449 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.right_e2dd {
    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);
    }
}

.footer-mini-7219 {
    animation: fadeInUp 0.6s ease-out;
}

.menu-18dd {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.logo_left_75fd {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .logo_left_75fd {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.progress-orange-6110 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .progress-orange-6110 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tertiary-9033 {
    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);
}

.tertiary-9033 .north_0a3e {
    font-size: 1.25rem;
}

.tertiary-9033 .rough_ef35 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.stone_f322 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .stone_f322 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.box_green_5b94 {
    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);
}

.box_green_5b94:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.row-middle-afd6 {
    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);
}

.texture_lite_b0a1 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.liquid_4127 {
    color: var(--text-gray);
    line-height: 1.6;
}

.info-pro-080b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.shadow-61f7 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.shadow-61f7 .search-static-6991 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.shadow-61f7 .clean_2f6d {
    color: var(--text-gray);
    line-height: 1.6;
}

.header_purple_4c42 {
    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);
}

.focused_c39c {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.focused_c39c img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.focused_c39c img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.breadcrumb-a3a4 {
    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);
}

.element_easy_6b08 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.card-hot-8fae {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.card-hot-8fae label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.card-hot-8fae 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);
}

.card-hot-8fae input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.card-hot-8fae input::placeholder {
    color: var(--text-muted);
}

.orange-70ca {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.alert-pink-d268 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.alert-pink-d268 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.south-4b87 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.south-4b87:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.active_dim_70dd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .active_dim_70dd {
        grid-template-columns: repeat(4, 1fr);
    }
}

.simple-ed9b {
    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);
}

.simple-ed9b .full_c4ee {
    font-size: 1.25rem;
}

.simple-ed9b .last_e40e {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.feature_action_67f6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.iron_233d {
    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);
}

.iron_233d .north_0a3e {
    font-size: 2rem;
    flex-shrink: 0;
}

.iron_233d .search-static-6991 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.iron_233d .clean_2f6d {
    color: var(--text-gray);
    line-height: 1.6;
}

.popup-inner-a2cf {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.message-center-7d79 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.message-center-7d79 .pro-c286 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.message-center-7d79 .slider-217a {
    color: var(--text-gray);
    line-height: 1.6;
}

.primary_3add {
    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);
}

.tooltip_35dd {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .tooltip_35dd {
        grid-template-columns: repeat(3, 1fr);
    }
}

.element_advanced_a175 {
    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);
}

.element_advanced_a175:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.huge_4367 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.detail_pink_35c1 {
    flex: 1;
}

.link_dark_d1a5 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.input-new-5461 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.slider_b366 {
    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);
}

.slider_b366:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.main-50fe {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .main-50fe {
        grid-template-columns: repeat(4, 1fr);
    }
}

.status_cool_fd6d {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.status_cool_fd6d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.badge_a2fb {
    font-size: 2rem;
    flex-shrink: 0;
}

.summary_957e {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stone-ca59 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.video-bright-e981 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.input_189e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.secondary-tiny-abaf {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.banner_last_f4f7 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.banner_last_f4f7 .outer_2c05 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.banner_last_f4f7 .nav-4832 {
    color: var(--text-gray);
    line-height: 1.6;
}

.heading-109a {
    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);
}

.detail_easy_8d14 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.table_light_263f {
    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);
}

.table_light_263f .north_0a3e {
    font-size: 2rem;
    flex-shrink: 0;
}

.table_light_263f .search-static-6991 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.table_light_263f .clean_2f6d {
    color: var(--text-gray);
    line-height: 1.6;
}

.alert-ff88 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .alert-ff88 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.logo_plasma_04fd {
    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);
}

.logo_plasma_04fd:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.upper_b2f0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .upper_b2f0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.logo-clean-6a56 {
    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-clean-6a56:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.outline-248a {
    font-size: 2rem;
    flex-shrink: 0;
}

.paragraph_upper_5259 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.tertiary_cool_b1ae {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.outline_pressed_666b {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.large-ca08 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.form-704c {
    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);
}

.form-704c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.fresh_1e96 {
    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);
}

.alert_pressed_f03a {
    flex: 1;
}

.footer-in-38bc {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.table_82df {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.description_in_e3a3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.footer-center-0756 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.middle_e11d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.middle_e11d .pro-c286 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.middle_e11d .slider-217a {
    color: var(--text-gray);
    line-height: 1.6;
}

.picture_36bf {
    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);
}

.easy-dd2b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .easy-dd2b {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.grid-huge-b1fb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .grid-huge-b1fb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.aside_4af2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.aside_4af2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.paper_3fa6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.card_west_349e {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail_cool_3a26 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.gallery-wood-1a17 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.preview-full-d0d9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature_hard_db85 {
    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);
}

.column-purple-f82d {
    font-size: 2rem;
    flex-shrink: 0;
}

.input-clean-3de1 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.media_70f2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.detail_easy_8d14 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.table_light_263f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.table_light_263f .search-static-6991 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.table_light_263f .clean_2f6d {
    color: var(--text-gray);
    line-height: 1.6;
}

.shadow_over_f13c {
    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);
}

.bronze_e13a {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .bronze_e13a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .bronze_e13a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.lower-7ae6 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.lower-7ae6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.lite_becb {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.sidebar-dark-c395 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.right_c592 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.main-prev-d5e5 {
    padding: 1.5rem;
}

.notification_f0d4 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.table_043d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table_043d li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.table_043d li:last-child {
    border-bottom: none;
}

.table_043d li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.button_mini_8733 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .button_mini_8733 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.frame-fluid-0b25 {
    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);
}

.frame-fluid-0b25:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.bright-4aa6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.description_432b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.paragraph-d312 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.gold-3273 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.hard_9299 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hover_3739 {
    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);
}

.text-2bbf {
    font-size: 2rem;
    flex-shrink: 0;
}

.notification-0bcc {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.surface-middle-e7f0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.pagination_next_73d3 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.article_aeb1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.easy-cd88 {
    text-align: center;
}

.breadcrumb-inner-bc2a {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.north_d3fc {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.hard_c685 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.content_719e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.content_719e .search-static-6991 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.content_719e .clean_2f6d {
    color: var(--text-gray);
    line-height: 1.6;
}

.east-7be9 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .east-7be9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .east-7be9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.green-00ce {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.green-00ce:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.motion_2dd3 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.feature-a55a {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.search-static-6991 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.modal-pink-49aa {
    padding: 1.5rem;
}

.clean_2f6d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tertiary-d2ec {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tertiary-d2ec 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;
}

.tertiary-d2ec li:last-child {
    border-bottom: none;
}

.tertiary-d2ec li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.shade_d09c {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.wrapper_4c68 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.wrapper_4c68:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.content-paper-81d2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.backdrop-cold-9ebd {
    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);
}

.row-middle-afd6 {
    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;
}

.texture_lite_b0a1 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.liquid_4127 {
    color: var(--text-gray);
    line-height: 1.6;
}

.media-blue-cad5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.button_active_00a7 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.texture-3516 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.secondary_515b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.row_bc50 {
    display: flex;
    gap: 1rem;
}

.row_bc50 .motion-09e9 {
    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;
}

.pattern_top_71ea {
    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);
}

.alert-stone-5dc1 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.shade-west-e357 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shade-west-e357 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;
}

.shade-west-e357 li:last-child {
    border-bottom: none;
}

.shade-west-e357 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.motion_1608 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .motion_1608 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .motion_1608 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.text-674b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.text-674b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.advanced_14c5 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.prev-38b9 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.outer_2c05 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.next-65c4 {
    font-size: 1rem;
}

.outer_85fe {
    padding: 1.5rem;
}

.nav-4832 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.container-east-710b {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.container-east-710b .easy-cd88 {
    text-align: center;
}

.container-east-710b .north_d3fc {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.container-east-710b .motion-d8cd {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.caption-b80c {
    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);
}

.caption-b80c:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.dirty-f3a7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dirty-f3a7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.up-f51a {
    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);
}

.up-f51a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.text_ac85 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.middle_1091 {
    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);
}

.accordion-2824 {
    font-size: 2rem;
    flex-shrink: 0;
}

.link-1c80 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.info-ca90 {
    color: var(--text-gray);
    line-height: 1.6;
}

.glass_d2cf {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.hover-f046 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.slow-3438 {
    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);
}

.label-72ed {
    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;
}

.label-72ed.menu-c9f8 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.label-72ed.thumbnail-focused-2b96 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.label-72ed.clean_8c86 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.label-72ed.gallery_fce5 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.label-72ed.detail_in_07a3 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.border-top-d4d8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.section-first-82ec {
    color: var(--text-gray);
    line-height: 1.6;
}

.mask_1387 {
    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);
}

.feature_liquid_51f0 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.popup-inner-a2cf {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popup-inner-a2cf 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;
}

.popup-inner-a2cf li:last-child {
    border-bottom: none;
}

.popup-inner-a2cf li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.wrapper_simple_493f {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .wrapper_simple_493f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .wrapper_simple_493f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.banner_2fe6 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.banner_2fe6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.banner_2fe6.menu_orange_e0b5 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .banner_2fe6.menu_orange_e0b5 {
        grid-column: span 3;
    }
}

.accordion-9171 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.banner_2fe6.menu_orange_e0b5 .accordion-9171 {
    background: rgba(6, 182, 212, 0.1);
}

.modal-e0fa {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.wide_50b2 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.banner_2fe6.menu_orange_e0b5 .wide_50b2 {
    color: var(--info-color);
}

.basic_0bf7 {
    padding: 1.5rem;
    text-align: center;
}

.content_pro_65f3 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.banner_2fe6.menu_orange_e0b5 .content_pro_65f3 {
    color: var(--info-color);
}

.solid_c3de {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.stale-33e9 {
    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 */
.fluid_752c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .fluid_752c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.shade_down_edbb {
    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);
}

.shade_down_edbb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.module_advanced_00ba {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.iron_233d {
    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);
}

.full_c4ee {
    font-size: 2rem;
    flex-shrink: 0;
}

.photo-out-b023 {
    flex: 1;
}

.paper_b286 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.lite_0423 {
    color: var(--text-gray);
    line-height: 1.6;
}

.badge-next-9156 {
    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);
}

.rough-5b77 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.soft_15b4 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.right_e2dd {
    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);
}

.column_steel_eaa9 {
  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);
}

.column_steel_eaa9 .easy-cd88 {
    text-align: center;
}

.column_steel_eaa9 .breadcrumb-inner-bc2a {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.column_steel_eaa9 .north_d3fc {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.glass-c061 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.logo-under-161c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.widget-paper-0739 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.layout-4a35 {
    color: var(--text-gray);
    line-height: 1.6;
}

.active_silver_cae8 {
    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);
}

.breadcrumb-2d74 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.white_8011 {
    color: var(--text-gray);
    line-height: 1.6;
}

.sidebar-cool-62f8 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .sidebar-cool-62f8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sidebar-cool-62f8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.content_purple_6487 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.content_purple_6487:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.block_solid_2a4e {
    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);
}

.bronze_a6dc {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.notification-under-e736 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.widget_356f {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.widget_356f.easy-39c1 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.widget_356f.background-up-bbbf {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.widget_356f.dark_b637 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.black-c3a0 {
    padding: 1.5rem;
    text-align: center;
}

.border-95fb {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.paragraph-e398 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.paragraph-e398 .glass-083b {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.purple-56b7 {
    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);
}

.purple-56b7:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.header_3335 {
  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);
}

.caption_348b {
    text-align: center;
}

.caption_348b .breadcrumb-inner-bc2a {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.caption_348b .north_d3fc {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.article-1ccc { text-align: center; }
.tiny-ca7c { text-align: left; }
.row-aaa4 { text-align: right; }

.gallery-dynamic-e928 { margin-bottom: 0; }
.accent-tall-16cc { margin-bottom: 0.5rem; }
.red_c570 { margin-bottom: 1rem; }
.filter_narrow_b15b { margin-bottom: 1.5rem; }
.current_25f9 { margin-bottom: 2rem; }

.grid-33dc { margin-top: 0; }
.paragraph-e09d { margin-top: 0.5rem; }
.chip-in-8a22 { margin-top: 1rem; }
.avatar-solid-eec7 { margin-top: 1.5rem; }
.orange-4001 { margin-top: 2rem; }

.fn-hidden-a205 { display: none; }
.fn-visible-a205 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .current-49d6 {
        padding: 6rem 0 3rem;
    }
    
    .dark-117b {
        text-align: center;
    }
    
    .description-c419 {
        text-align: center;
    }
    
    .old_e94f {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .summary_6f5b,
    .fixed-3d1c,
    .thick_5f17,
    .basic-cd26 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .current-49d6 {
        background: none;
    }
}

/* Providers Section */
.focus_next_451b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.thick-826d {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .thick-826d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .thick-826d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.active-e58a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.active-e58a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.card_1f6e {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.menu-fresh-1eeb {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.focus_5d19 {
    list-style: none;
    padding: 0;
}

.focus_5d19 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.focus_5d19 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.hidden_85c7 {
    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);
}

.hidden_85c7 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.feature_light_7522 {
    padding: var(--section-padding);
}

.center-7c33 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .center-7c33 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.cool-b236 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.cool-b236:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.hidden-dynamic-8be9 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.texture_5b93 {
    display: flex;
    flex-direction: column;
}

.container-out-005a {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.sort-selected-cb38 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.background_light_cd84 {
    color: var(--accent-color);
}

.table-orange-b5c3 {
    font-size: 1.25rem;
}

.notification_old_2063 {
    margin-bottom: 1rem;
}

.notification_old_2063 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.block_9b6c {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.shadow_selected_3ea5 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.easy-cd88 {
    text-align: center;
}

.breadcrumb-inner-bc2a {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.north_d3fc {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.banner_full_ba63 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.paragraph_e503 {
    margin: 2rem 0;
}

.left-d2e3 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.left-d2e3 .north_0a3e {
    font-size: 2rem;
    flex-shrink: 0;
}

.nav_light_2416 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.list_advanced_9319 {
    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;
}

.list_advanced_9319:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.active_ba3b {
    font-size: 2rem;
}

.basic_302f {
    display: flex;
    flex-direction: column;
}

.search_active_eda6 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.pink-dc8e {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.avatar_5b23 {
    padding: var(--section-padding);
}

.down-e326 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .down-e326 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .down-e326 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pink-1094 {
    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);
}

.pink-1094:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.pink-1094 .breadcrumb-inner-bc2a {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.pink-1094 .north_d3fc {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.pink-1094 .current-2abf {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.out_415a {
    margin-top: 4rem;
}

.west-3435 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.next-591e {
    overflow-x: auto;
}

.link-east-04ac {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.link-east-04ac thead {
    background: var(--accent-color);
}

.link-east-04ac th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.link-east-04ac td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.link-east-04ac tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.link-east-04ac tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.last_9772 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.text-pressed-bea6 {
    max-width: 900px;
    margin: 0 auto;
}

.hover-1cb6 {
    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);
}

.hover-1cb6:hover {
    border-color: var(--accent-color);
}

.disabled_1c75 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.disabled_1c75 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.focused-855b {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.hover-1cb6.fn-active-a205 .focused-855b {
    transform: rotate(45deg);
}

.paper-5fa4 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.hover-1cb6.fn-active-a205 .paper-5fa4 {
    max-height: 1000px;
}

.paper-5fa4 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.slider_cool_9c45 {
    padding: var(--section-padding);
}

.focused_c39c {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.tabs_stone_9cbe {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.heading_6e14 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .heading_6e14 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.east-04a7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.mini_f853 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.banner_hovered_a946 {
    font-size: 2rem;
}

.short_406b {
    color: var(--text-white);
    margin: 0;
}

.notification_1eb7 {
    list-style: none;
    padding: 0;
}

.notification_1eb7 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.notification_1eb7 li:last-child {
    border-bottom: none;
}

.last_b665 {
    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);
}

.last_b665 p {
    color: var(--success-color);
    margin: 0;
}

.dynamic-9097 {
    margin-top: 3rem;
}

.alert-stone-5dc1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.active-5b24 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .active-5b24 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.component_4b13 {
    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);
}

.tertiary_soft_eaec {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.component_4b13 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.dropdown-e5a8 {
    padding: var(--section-padding);
}

.brown-284b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .brown-284b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.avatar_gas_9cd7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.avatar_gas_9cd7:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.hero_left_4e59 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.shade_paper_8b92 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.wood-02fc {
    flex: 1;
}

.backdrop_4c58 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.north-e240 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.pattern_a4ce {
    color: var(--text-gray);
    line-height: 1.6;
}

.feature_first_4d12 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature_first_4d12:last-child {
    border-bottom: none;
}

/* Comparison Section */
.gradient_paper_1a70 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.label-ce48 {
    padding: var(--section-padding);
}

.tag_f7e4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.content-9146 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .content-9146 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.short-475e {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.bottom-7ecc, .hover_out_d341, .soft-a9e2 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.soft-a9e2 {
    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 */
.tag_fixed_7ea0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pattern-84ec {
    margin: 2rem 0;
}

.hover-small-206f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tabs-4e80 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.aside_red_fccd {
    list-style: none;
    padding: 0;
}

.aside_red_fccd 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;
}

.aside_red_fccd li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.aside_red_fccd li:last-child {
    border-bottom: none;
}

.tooltip-motion-3ee6 {
    text-align: center;
    margin-top: 2rem;
}

.banner_plasma_3027 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.shadow-motion-57df {
    padding: var(--section-padding);
}

.bronze_4939 {
    margin: 2rem 0;
}

.tertiary_d565 {
    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) {
    .tertiary_d565 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.tertiary_d565:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.static-71ad {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.surface-91b2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.element-b4c1 {
    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;
}

.menu-prev-04fa {
    flex: 1;
}

.search_mini_beb0 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.tooltip_ed5f {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.carousel_31e3 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.gradient_c165 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .gradient_c165 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.outline_c64f {
    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);
}

.outline_c64f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.outline_c64f .breadcrumb-inner-bc2a {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.outline_c64f .north_d3fc {
    color: var(--text-gray);
    font-size: 1rem;
}

.form_warm_76b7 {
    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);
}

.stale_d801 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.stale_d801 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.detail-8b13 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .detail-8b13 {
        grid-template-columns: 1fr 1fr;
    }
}

.copper_4283 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tall_6932 {
    margin-bottom: 1.5rem;
}

.tall_6932 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.tall_6932 input,
.tall_6932 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;
}

.tall_6932 input:focus,
.tall_6932 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.action_290c {
    width: 100%;
    margin-top: 1rem;
}

.bottom-a567 {
    display: flex;
    align-items: center;
}

.notification_steel_d6d9 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.silver_05e8 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.slider-basic-56f0 {
    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;
}

.main_8eb9 {
    color: var(--text-gray);
}

.description_complex_9167 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.paragraph-dd3a {
    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);
}

.paragraph-dd3a p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.texture-0bb0 {
    margin-top: 3rem;
}

.fluid-d0c3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.backdrop_8c9d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.list-dynamic-e6be {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.search-gas-bff7 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.search-gas-bff7:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.logo-e6f6 {
    padding: var(--section-padding);
}

.video-basic-1136 {
    margin: 2rem 0;
}

.light-bbc4 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.form-03fc {
    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;
}

.form-03fc:hover, .form-03fc.fn-active-a205 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.lower_382e {
    display: none;
}

.lower_382e.fn-active-a205 {
    display: block;
}

.fixed_5af8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.label-ffe5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.glass-8d91 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.glass-8d91 ul {
    list-style: none;
    padding: 0;
}

.glass-8d91 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.glass-8d91 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.info-right-8a9c {
    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 */
.table-brown-fc69 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.button-narrow-5cc4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.box_hot_bf0d {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.copper-5be0 {
    color: var(--accent-color);
    margin: 0;
}

.menu_static_551a {
    display: flex;
    gap: 1.5rem;
}

.tall-cfc5 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.thumbnail_left_0882 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.hero_wide_c89b {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.hero_wide_c89b.card_b047 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.hero_wide_c89b.search-7760 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.hero_wide_c89b.surface_dirty_0d27 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.summary_eba3 {
    margin-top: 2rem;
}

.image_73e1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.outline_active_b6df {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .outline_active_b6df {
        grid-template-columns: repeat(4, 1fr);
    }
}

.widget_7d52 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.icon-eb31 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.chip-fresh-48b5 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.picture_pro_c9ef {
    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 */
.hard_3987 {
    padding: var(--section-padding);
}

.badge-13c6 {
    margin: 2rem 0;
}

.slider_medium_7c87 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.input-soft-aa9e {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.search_lower_5482 {
    list-style: none;
    padding: 0;
}

.search_lower_5482 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;
}

.search_lower_5482 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.search_lower_5482 li:last-child {
    border-bottom: none;
}

.aside-black-cdd2 {
    margin: 2rem 0;
}

.east-d82a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.lower_c088 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .lower_c088 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.texture_cool_dc05 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outline-complex-a83e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.surface-last-8933 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.upper-b09c {
    margin-top: 2rem;
}

.link_dark_d1a5 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.icon-0153 {
    list-style: none;
    padding: 0;
}

.accordion-full-e856 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.accordion-full-e856 a {
    color: var(--accent-color);
    text-decoration: none;
}

.accordion-full-e856 a:hover {
    text-decoration: underline;
}

.nav_cool_7ed1 {
    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 */
.wood_3f77 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.plasma-7921 {
    margin: 2rem 0;
}

.red_65a0 {
    margin-bottom: 3rem;
}

.red_65a0 .tabs-4e80 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.accordion-fast-5b20 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.surface_lower_3f86 {
    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);
}

.surface_lower_3f86:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.texture_23a3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .texture_23a3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.block_selected_ed55 {
    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 */
.sidebar_fluid_17c5 {
    padding: var(--section-padding);
}

.thumbnail_over_187f {
    margin: 2rem 0;
}

.thumbnail_hovered_376e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.backdrop-3d86 {
    overflow-x: auto;
    margin: 2rem 0;
}

.middle-50de {
    background: rgba(6, 182, 212, 0.1) !important;
}

.complex_6109 {
    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;
}

.gallery-narrow-d829 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.mask_next_35d0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .mask_next_35d0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hero-6f1f {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hero-6f1f .north_0a3e {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.hero-6f1f .search-static-6991 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tooltip-over-4a42 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.secondary-full-da75 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.alert_9d5e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .alert_9d5e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fresh_5cc4 {
    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;
}

.fresh_5cc4:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.hero_selected_2dea {
    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);
}

.steel-f153 {
    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;
}

.message_wide_0992 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.detail_e60d {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.clean_0b4c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.green_11ee {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fixed_e8c5 {
    color: var(--text-white);
    font-weight: 600;
}

.panel-last-35d4 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.north_e04c {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.north_e04c .motion-09e9 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.modal_2dd0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .modal_2dd0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.paragraph_6f84 {
    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);
}

.paragraph_6f84:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.paragraph_6f84 .breadcrumb-inner-bc2a {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.paragraph_6f84 .north_d3fc {
    color: var(--text-gray);
    font-size: 1rem;
}

.sort_03d6 {
    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);
}

.highlight-south-ba35 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.highlight-south-ba35 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.preview-full-d0d9 {
    margin: 2rem 0;
}

.feature_hard_db85 {
    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);
}

.feature_hard_db85:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.column-purple-f82d {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.column_bronze_223c {
    flex: 1;
}

.input-clean-3de1 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.media_70f2 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.detail_easy_8d14 {
    margin: 2rem 0;
}

.table_light_263f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.table_light_263f .search-static-6991 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.table_light_263f .clean_2f6d {
    color: var(--text-gray);
    margin: 0;
}

.shadow_over_f13c {
    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);
}

.shadow_over_f13c .center-0f87 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.tooltip-over-4a42 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.fresh_1e96 {
    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;
}

.alert_pressed_f03a {
    flex: 1;
}

.table_82df {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.description_in_e3a3 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.row-middle-afd6 {
    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;
}

.red_a594 {
    flex: 1;
}

.texture_lite_b0a1 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.liquid_4127 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.texture-3516 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.secondary_515b {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.row_bc50 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.row_bc50 .motion-09e9 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.pattern_top_71ea {
    margin-top: 2rem;
}

.pattern_top_71ea .alert-stone-5dc1 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.background_wide_d6a3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.article_aeb1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .article_aeb1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.article_aeb1 .easy-cd88 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hard_c685 {
    margin: 2rem 0;
}

.content_719e {
    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 */
.table-focused-1874 {
    padding: var(--section-padding);
}

.modal-pink-49aa {
    margin-top: 1rem;
}

.tertiary-d2ec {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.tertiary-d2ec li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.tertiary-d2ec li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.plasma_f763 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.card_short_72d2 {
    margin: 2rem 0;
}

.pressed_1e2f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.pagination_steel_18cb {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.preview-purple-6b8c {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.cool_abb2 {
    margin: 2rem 0;
}

.accent_west_c9f1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.accent_west_c9f1 .tabs-4e80 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.title-out-cdee {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .title-out-cdee {
        grid-template-columns: repeat(2, 1fr);
    }
}

.left_cda8 {
    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);
}

.dynamic-e925 {
    color: var(--text-white);
    font-weight: 600;
}

.picture_steel_938a {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.silver_dea2 {
    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);
}

.silver_dea2 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.module-5b64 {
    padding: var(--section-padding);
}

.button-fast-b224 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.button-fast-b224:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.layout-left-dc5d {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.layout-left-dc5d .tertiary_soft_eaec {
    font-size: 2rem;
    flex-shrink: 0;
}

.layout-left-dc5d .wide-6037 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.thumbnail-full-09ce {
    flex: 1;
}

.panel-pro-e2a2 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.in_6903 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.in_6903 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.in_6903 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.dark_434f {
    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);
}

.dark_434f p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.dark_434f strong {
    color: var(--warning-color);
}

/* Slots Section */
.avatar_e80b {
    padding: var(--section-padding);
}

.input_189e {
    margin: 2rem 0;
}

/* Table Games Section */
.black-e17b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.secondary-tiny-abaf {
    margin: 2rem 0;
}

.banner_last_f4f7 {
    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);
}

.banner_last_f4f7:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.banner_last_f4f7 .outer_2c05 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.banner_last_f4f7 .nav-4832 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.heading-109a {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.heading-109a .center-0f87 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.filter_d519 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.menu_complex_d627 {
    margin: 2rem 0;
}

.column_f9ba {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.form-09ab {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.caption-stale-03c5 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.caption-steel-e419 {
    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);
}

.caption-steel-e419:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.caption-steel-e419.fn-active-a205 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.highlight_wood_89b5 {
    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);
}

.grid-cc72 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.grid-cc72 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.highlight-hard-b8ab {
    padding: var(--section-padding);
}

.widget-11e6 {
    margin: 2rem 0;
}

.slow_c3c3 {
    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);
}

.slow_c3c3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .slow_c3c3 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.sort-cold-3064 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.photo_da7b {
    flex: 1;
}

.out-7598 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.backdrop_9bc2 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.button_13a6 {
    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;
}

.background-old-e503 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.focus_623b {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.middle_791e {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.banner_stone_85fd {
    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;
}

.banner_stone_85fd:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.overlay-easy-6067 {
    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);
}

.south-8bc6 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.south-8bc6 strong {
    color: var(--accent-color);
}

/* New Games Section */
.right_97ce {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.mask_a7b2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .mask_a7b2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .mask_a7b2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.media-3a79 {
    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;
}

.media-3a79:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.focused_0856 {
    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;
}

.medium_87bf {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.form_520d {
    font-size: 2rem;
}

.smooth-950f {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.wrapper-bright-de60 {
    flex: 1;
}

.current-0fb9 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.section_in_01f3 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.paper-481f {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.gallery_43d5 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.frame-mini-8eb9 {
    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;
}

.content-5fec {
    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;
}

.content-5fec:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.tooltip_d1cc {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.smooth_f5c7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.smooth-7c63 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .smooth-7c63 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.form-a397 {
    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);
}

.alert-4a90 {
    color: var(--text-white);
    font-weight: 600;
}

.carousel-lite-8020 {
    color: var(--accent-color);
    font-weight: 600;
}

.active-tiny-e2d9 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.active-tiny-e2d9 strong {
    color: var(--accent-color);
}

/* Security Section */
.notification_1249 {
    padding: var(--section-padding);
}

/* Benefits Section */
.new-eb50 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.logo_fluid_6492 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.pattern-05f1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.table-3726 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.notice-hard-6848 {
    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) {
    .notice-hard-6848 {
        flex-direction: column;
        gap: 1rem;
    }
}

.notice-hard-6848:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.notice-hard-6848 .row-middle-afd6 {
    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;
}

.notice-hard-6848 .red_a594 {
    flex: 1;
}

.notice-hard-6848 .texture_lite_b0a1 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.notice-hard-6848 .liquid_4127 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.heading-top-286a {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.heading-top-286a .paper_b286 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.heading-top-286a .feature_action_67f6 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.heading-top-286a .feature_action_67f6 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.heading-top-286a .feature_action_67f6 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.module-58f8 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.large_bd38 {
    padding: var(--section-padding);
}

.active_aad9 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .active_aad9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.module-27aa {
    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);
}

.module-27aa:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.module-27aa .progress_steel_1e8e {
    font-size: 2rem;
    flex-shrink: 0;
}

.module-27aa .tabs_motion_e138 {
    flex: 1;
}

.module-27aa .pro-c286 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.module-27aa .section-7d18 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.grid-6e78 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.grid-6e78 .surface-e9ac {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.grid-6e78 .silver_f1fd {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.grid-6e78 .silver_f1fd 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);
}

.grid-6e78 .silver_f1fd li:last-child {
    border-bottom: none;
}

.grid-6e78 .silver_f1fd 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;
}

.grid-6e78 .silver_f1fd li strong {
    color: var(--text-white);
}

.gradient_easy_d6db {
    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);
}

.gradient_easy_d6db p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.gradient_easy_d6db strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.tooltip-fast-bd9f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.layout-1974 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .layout-1974 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.motion-d5c2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.motion-d5c2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.tag_west_81e0 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.old-e949 {
    font-size: 2rem;
}

.primary_selected_a4c0 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.text-29d5 {
    flex: 1;
}

.link_white_f29f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link_white_f29f li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.link_white_f29f li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.message-huge-f6f5 {
    margin-top: 3rem;
}

.slider_medium_7c87 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.input-soft-aa9e {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.search_lower_5482 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search_lower_5482 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.search_lower_5482 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.search_lower_5482 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.avatar-5511 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.layout-a848 {
    margin: 2rem 0;
}

.shadow-east-9ba7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.shadow-east-9ba7 .tabs-4e80 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.description_c501 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .description_c501 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.highlight-d20d {
    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);
}

.highlight-d20d:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.section_b319 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tertiary-inner-c9b5 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.tabs-large-7c17 {
    padding: var(--section-padding);
}

.shade_d5a5 {
    margin: 2rem 0;
}

.avatar-09f3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .avatar-09f3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .avatar-09f3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card_c6dc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.card_c6dc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.static_2ecb {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.layout_current_957f {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.status-hot-3fa5 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-hot-3fa5.red-fe51 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.box_inner_3cbb {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.article-focused-3e6f {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.list_east_be5a {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.form_left_8ccc {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.header-a792 {
    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);
}

.header-a792 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.header-a792 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.texture_8103 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.table_8c42 {
    margin: 2rem 0;
}

.large_2c4d {
    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) {
    .large_2c4d {
        flex-direction: column;
        gap: 1rem;
    }
}

.large_2c4d:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.large_2c4d::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);
}

.hard_5459 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.glass-04f1 {
    flex: 1;
}

.list-cold-a951 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.hot-125d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hot-125d li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.gradient-681e {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.thumbnail_upper_b031 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.info_copper_bd22 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .info_copper_bd22 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.outer-0f6a {
    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);
}

.backdrop-f9fe {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.message-70f0 {
    flex: 1;
}

.outline_dim_ad67 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-3612 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.alert_d780 {
    margin-top: 2rem;
    text-align: center;
}

.link-b4c4 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.link-b4c4 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.dirty-f3a7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dirty-f3a7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.up-f51a {
    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);
}

.up-f51a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.up-f51a .bright-4aa6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.up-f51a .description_432b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.up-f51a .paragraph-d312 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.up-f51a .gold-3273 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.sort_lower_1474 {
    padding: var(--section-padding);
}

.middle_1091 .heading_prev_498e {
    flex: 1;
}

/* Promo Calendar Section */
.badge_selected_6ca0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.popup_old_b89f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .popup_old_b89f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.disabled-1593 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.bronze-c335 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.footer-fast-1d46 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dropdown_cool_d399 {
    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);
}

.form_bee6 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.item-a649 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.tiny_953b {
    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);
}

.tiny_953b p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.tiny_953b strong {
    color: var(--accent-color);
}

/* Requirements Section */
.item_4fb7 {
    padding: var(--section-padding);
}

.steel-3486 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .steel-3486 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.block_wood_2914 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.status_f717 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.mask_plasma_8c34 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mask_plasma_8c34 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.south-051a {
    margin-top: 3rem;
}

.south-051a .slider_medium_7c87 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.south-051a .input-soft-aa9e {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.south-051a .search_lower_5482 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.south-051a .search_lower_5482 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.south-051a .search_lower_5482 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.south-051a .search_lower_5482 li strong {
    color: var(--warning-color);
}

.fresh_452a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.fresh_452a strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.breadcrumb-389c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.smooth-7c95 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .smooth-7c95 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.next-8e51 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.next-8e51 .tabs-4e80 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.prev-b453 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.steel-d300 {
    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);
}

.steel-d300:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.focus-2d9d {
    font-size: 2rem;
    flex-shrink: 0;
}

.tooltip-medium-ab03 {
    flex: 1;
}

.column_pressed_46df {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.form-4326 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.short_8a3d {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.paper_3e27 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.sidebar-gold-179b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .sidebar-gold-179b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.large_9b3f {
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.large_9b3f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.chip_6c46 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.article-0c8b {
    color: var(--text-gray);
    font-size: 1rem;
}

.stale_d801 {
    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);
}

.down-09fb {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.down-09fb strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.feature-e6e2 { 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; }
.menu-ab72, .table-easy-84df { max-width:100%; height:auto; }

.link_wide_70ad, .sidebar_clean_b3e3, .tag-e3d7 { white-space:normal; }

.dark-117b,
.description-c419,
.fluid_752c,
.dirty-f3a7,
.detail_easy_8d14,
.sidebar-cool-62f8 {
  flex-wrap:wrap;
}

[class*="grid"],
.sidebar-gold-179b,
.avatar-09f3,
.fast_29de {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.current-49d6 img,
.description-c419 img,
.secondary-medium-519d img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.stale-591e, .disabled-up-d0c2,
.popup_66e5, .tag_prev_6c8d {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.next-591e { width:100%; overflow-x:auto; }
.next-591e table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.thick-826d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .thick-826d {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.active-e58a {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.down-e326,
.focus-16fd,
.layout-c42b,
.highlight_brown_ab8a,
.gradient_c165,
.sidebar-gold-179b,
.avatar-09f3,
.fast_29de,
.header_3335,
.widget-11e6,
.thick-826d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .down-e326,
  .focus-16fd,
  .layout-c42b,
  .highlight_brown_ab8a,
  .gradient_c165,
  .sidebar-gold-179b,
  .avatar-09f3,
  .fast_29de,
  .header_3335,
  .widget-11e6,
  .thick-826d {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.pink-1094,
.outline_c64f,
.large_9b3f,
.table-gas-e69c,
.card_c6dc,
.caption_348b,
.slow_c3c3,
.active-e58a {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.liquid-bae9,
.bottom_43c2,
.video-new-9d99 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.liquid-bae9 > *,
.bottom_43c2 > *,
.video-new-9d99 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: f3bb */
.phantom-card-z0 {
  padding: 0.4rem;
  font-size: 11px;
  line-height: 1.3;
}
