/* {$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;
}

.icon-613f {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.warm_4832 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .warm_4832 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .warm_4832 {
        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 */
.list_solid_6574 {
    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);
}

.outline-tall-ef24 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .outline-tall-ef24 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .container-bd4f {
        grid-column: 1;
    }
    
    .form-warm-383e {
        grid-column: 2;
    }
    
    .picture-1295 {
        grid-column: 3;
    }
}

.container-bd4f img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.container-bd4f:hover img {
    transform: scale(1.05);
}

/* Navigation */
.pagination_down_788c {
    display: none;
}

@media (min-width: 1024px) {
    .pagination_down_788c {
        display: block;
    }
}

/* Grouped Navigation */
.light-884d {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.hover-fast-45a7 {
    position: relative;
}

.paragraph-dark-404c {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.hover-fast-45a7 .fast_4821 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.fast_4821 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.mask_4ed3 {
    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;
}

.mask_4ed3:hover,
.mask_4ed3.fn-active-0642 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.title_copper_ca06 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .title_copper_ca06 {
        display: flex;
    }
}

/* Mobile Register Button */
.form-warm-383e {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .form-warm-383e {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.component-copper-0381 {
    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;
}

.component-copper-0381::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 */
.picture-1295 {
    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) {
    .picture-1295 {
        display: none;
    }
}

.picture-1295 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.picture-1295.fn-active-0642 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.picture-1295.fn-active-0642 span:nth-child(2) {
    opacity: 0;
}

.picture-1295.fn-active-0642 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.element_033d {
    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;
}

.element_033d.fn-active-0642 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.hero_f664 {
    overflow: hidden;
}

.thumbnail_gas_f5be {
    list-style: none;
    padding: 0.75rem 0;
}

.menu-thick-8210 {
    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;
}

.menu-thick-8210:hover,
.menu-thick-8210.fn-active-0642 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.menu-thick-8210.alert_fixed_040e {
    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;
}

.menu-thick-8210.alert_fixed_040e::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 */
.sidebar-f0e1 {
    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;
}

.fresh-5230 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.fresh-5230:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.west-f656 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.west-f656:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.heading_next_8f07 {
    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;
}

.heading_next_8f07:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.form-bottom-9d8e {
    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;
}

.carousel_cold_4f4e {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.carousel_cold_4f4e:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.large_5e42 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.large_5e42:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.south-5115 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.south-5115: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);
}

.paragraph-37a4 {
    font-size: 1em;
    font-weight: 700;
}

.overlay_f5bb {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.list-liquid-805b {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.list-liquid-805b::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;
}

.footer-solid-2b75 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .footer-solid-2b75 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.outline-solid-a6ac {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.sort_short_b492 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.old-99f3 {
    margin-bottom: 2rem;
}

.slow_be1b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .slow_be1b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sidebar-hard-a5c6 {
    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);
}

.dirty_d582 {
    font-size: 1.5rem;
}

.component_right_95b0 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.focus-focused-301f {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tabs_paper_5dae {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.tabs_paper_5dae:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.gradient-941f {
    text-align: center;
    margin-bottom: 3rem;
}

.notification_down_8e18 {
    margin-bottom: 1rem;
}

.hovered_33a5 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.label-b4f3 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .label-b4f3 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .label-b4f3.input-8599 {
        direction: rtl;
    }
    
    .label-b4f3.input-8599 > * {
        direction: ltr;
    }
}

.summary_0215 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.summary_0215:first-child {
    margin-top: 0;
}

.detail_38ab {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.fluid_854b {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.fluid_854b:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.simple_fb15 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .simple_fb15 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pro_f8da {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.detail_2b0d {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.grid-afd8 {
    list-style: none;
}

.grid-afd8 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.grid-afd8 li:last-child {
    border-bottom: none;
}

/* Games Features */
.active-6dab {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.left-da97 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-3541 {
    font-size: 2rem;
    flex-shrink: 0;
}

.active-efe8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.lower-8e1b {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.paragraph_active_c50b {
    margin: 2rem 0;
}

.block_ef6e {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.full-9937 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.badge_4078 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.yellow-b420 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.slider_75bb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .slider_75bb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.form-pink-9200 {
    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);
}

.form-pink-9200:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.chip-bf10 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.active_273c {
    font-size: 1.5rem;
}

.hover_a1fc {
    color: var(--accent-color);
    margin: 0;
}

.down-1cd9 {
    list-style: none;
}

.down-1cd9 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.down-1cd9 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.caption-dim-7e2a {
    margin: 2rem 0;
}

.next-c998 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.link_bc6e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .link_bc6e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tag_next_f7bb {
    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);
}

.title_ccaa {
    font-size: 1.25rem;
}

.surface-focused-9791 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.top_d711,
.simple-98d7 {
    text-align: center;
    margin: 2rem 0;
}

.carousel-iron-0641,
.yellow_346a {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.pink_d16e {
    margin: 2rem 0;
    text-align: center;
}

.popup_431b {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.popup_431b::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;
}

.backdrop_hard_9717 {
    position: relative;
    z-index: 1;
}

.block_light_fe16 {
    margin-bottom: 1rem;
}

.disabled_79bd {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.panel_easy_5362 {
    margin-bottom: 3rem;
}

.basic-b406 {
    margin-top: 3rem;
}

.paper_6961 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .paper_6961 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.paper_6961 .sidebar-hard-a5c6 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.info_warm_fb23 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.container-top-e0ce {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.mask-0f50 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.shadow_gold_f27f {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .shadow_gold_f27f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .shadow_gold_f27f {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.tooltip_dirty_d79b {
    margin-bottom: 1rem;
}

.dropdown_center_a4f6 img {
    margin-bottom: 1rem;
}

.link_aea6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.table-9ab5 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.video-9d9d {
    list-style: none;
}

.video-9d9d li {
    margin-bottom: 0.5rem;
}

.video-9d9d a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.video-9d9d a:hover {
    color: var(--accent-color);
}

.disabled_6d56 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.modal_1786 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: 1.25rem;
    transition: var(--transition-fast);
}

.modal_1786:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.simple-6dae {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.simple-6dae p {
    margin-bottom: 0.25rem;
}

.wood_4e42 {
    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) {
    .wood_4e42 {
        flex-direction: row;
    }
}

.module_large_d423 {
    text-align: center;
}

@media (min-width: 768px) {
    .module_large_d423 {
        text-align: left;
    }
}

.module_large_d423 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.thick_3972 {
    font-size: 0.75rem !important;
}

.info_iron_003a {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.description_easy_6433 {
    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);
    }
}

.badge_middle_94c5 {
    animation: fadeInUp 0.6s ease-out;
}

.description_ead1 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.hidden-paper-3300 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hidden-paper-3300 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.content_hot_8169 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .content_hot_8169 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.banner-rough-05f7 {
    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);
}

.banner-rough-05f7 .info-3541 {
    font-size: 1.25rem;
}

.banner-rough-05f7 .preview-e065 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.detail_28a5 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .detail_28a5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.content-dim-efd8 {
    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);
}

.content-dim-efd8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.description-2788 {
    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);
}

.stone_98d9 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.gallery-2584 {
    color: var(--text-gray);
    line-height: 1.6;
}

.dropdown_thick_eeea {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.card_241f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.card_241f .active-efe8 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.card_241f .lower-8e1b {
    color: var(--text-gray);
    line-height: 1.6;
}

.old_8416 {
    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);
}

.frame-6672 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.frame-6672 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.frame-6672 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.caption_221b {
    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);
}

.header_full_a3cb {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.frame_9627 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.frame_9627 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.frame_9627 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);
}

.frame_9627 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.frame_9627 input::placeholder {
    color: var(--text-muted);
}

.pink-0cfb {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.table-9c35 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.table-9c35 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.easy-75b2 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.easy-75b2:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.link_bc6e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .link_bc6e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tag_next_f7bb {
    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);
}

.tag_next_f7bb .title_ccaa {
    font-size: 1.25rem;
}

.tag_next_f7bb .surface-focused-9791 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.thick-e512 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tall_aed5 {
    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);
}

.tall_aed5 .info-3541 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tall_aed5 .active-efe8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tall_aed5 .lower-8e1b {
    color: var(--text-gray);
    line-height: 1.6;
}

.filter-b807 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.form-large-bbf9 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.form-large-bbf9 .simple_72d3 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.form-large-bbf9 .carousel_81c7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.disabled-c340 {
    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);
}

.panel_e664 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .panel_e664 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.aside_550a {
    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);
}

.aside_550a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.copper_6472 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.description-45c0 {
    flex: 1;
}

.steel_7a6d {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.gallery-silver-e764 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.simple-0fe7 {
    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);
}

.simple-0fe7:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.table_pressed_52f7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .table_pressed_52f7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.backdrop_7354 {
    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);
}

.backdrop_7354:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.medium_0c2a {
    font-size: 2rem;
    flex-shrink: 0;
}

.summary-7ed7 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.tabs_outer_0a0b {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.title_yellow_22bd {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.carousel-b50f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hidden-hard-27f8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.picture_lite_43c7 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.picture_lite_43c7 .article_tiny_1993 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.picture_lite_43c7 .footer_medium_adff {
    color: var(--text-gray);
    line-height: 1.6;
}

.menu-upper-34a2 {
    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);
}

.wood-c631 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.status_solid_b91a {
    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);
}

.status_solid_b91a .info-3541 {
    font-size: 2rem;
    flex-shrink: 0;
}

.status_solid_b91a .active-efe8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.status_solid_b91a .lower-8e1b {
    color: var(--text-gray);
    line-height: 1.6;
}

.table-a595 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .table-a595 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.center_4bc8 {
    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);
}

.center_4bc8:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.box-55ee {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .box-55ee {
        grid-template-columns: repeat(4, 1fr);
    }
}

.widget-advanced-0e38 {
    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);
}

.widget-advanced-0e38:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.badge-b381 {
    font-size: 2rem;
    flex-shrink: 0;
}

.photo-22f3 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.full-9937 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.module_cb75 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.soft_110c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.large_699f {
    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);
}

.large_699f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.stale-1e50 {
    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);
}

.panel_advanced_b94d {
    flex: 1;
}

.plasma-3137 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.text_6238 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.container_glass_8b0f {
    color: var(--text-gray);
    line-height: 1.6;
}

.motion-a453 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.current-1360 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.current-1360 .simple_72d3 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.current-1360 .carousel_81c7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.simple-98d7 {
    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);
}

.paragraph-first-c6ea {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .paragraph-first-c6ea {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.message-ac96 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .message-ac96 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.breadcrumb-stone-5bba {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.breadcrumb-stone-5bba:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.caption-c9eb {
    font-size: 2rem;
    flex-shrink: 0;
}

.chip-b5a9 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dark_1ab4 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.under_67b1 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.easy-bbee {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.active-6a41 {
    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);
}

.shade_plasma_c99b {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-plasma-dce6 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.layout_purple_d9cc {
    color: var(--text-gray);
    line-height: 1.6;
}

.wood-c631 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.status_solid_b91a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.status_solid_b91a .active-efe8 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.status_solid_b91a .lower-8e1b {
    color: var(--text-gray);
    line-height: 1.6;
}

.dim_85b2 {
    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);
}

.card-rough-6b49 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .card-rough-6b49 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .card-rough-6b49 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hero_64e8 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.hero_64e8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.blue_e712 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.tall-fe42 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.dynamic-08ab {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.primary-4296 {
    padding: 1.5rem;
}

.background-4b9f {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.logo_advanced_b163 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.logo_advanced_b163 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;
}

.logo_advanced_b163 li:last-child {
    border-bottom: none;
}

.logo_advanced_b163 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.purple_5a19 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .purple_5a19 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hidden_purple_c103 {
    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);
}

.hidden_purple_c103:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.narrow_0c90 {
    font-size: 2rem;
    flex-shrink: 0;
}

.sidebar_mini_8807 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.preview_steel_1564 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.accordion_right_48cc {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.iron-c156 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.notification_light_1d9f {
    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);
}

.east-ae16 {
    font-size: 2rem;
    flex-shrink: 0;
}

.left-39a3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.text-08aa {
    color: var(--text-gray);
    line-height: 1.6;
}

.link_purple_9839 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.progress-ffba {
    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);
}

.element-narrow-aff4 {
    text-align: center;
}

.banner_full_3692 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.outer_8716 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.breadcrumb_2c8c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wide-ac46 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wide-ac46 .active-efe8 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.wide-ac46 .lower-8e1b {
    color: var(--text-gray);
    line-height: 1.6;
}

.fixed_2d44 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .fixed_2d44 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .fixed_2d44 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.left-a35b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.left-a35b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.icon-tall-de43 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.active-down-1470 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.active-efe8 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.over-7f52 {
    padding: 1.5rem;
}

.lower-8e1b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.menu_orange_9df1 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu_orange_9df1 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;
}

.menu_orange_9df1 li:last-child {
    border-bottom: none;
}

.menu_orange_9df1 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.component_dynamic_94d9 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.preview-0bd3 {
    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);
}

.preview-0bd3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.module_motion_7c7f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.backdrop_b72f {
    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);
}

.description-2788 {
    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;
}

.stone_98d9 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.gallery-2584 {
    color: var(--text-gray);
    line-height: 1.6;
}

.highlight-dca0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.modal_08ac {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.filter_68d2 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.section-70bf {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.current_3794 {
    display: flex;
    gap: 1rem;
}

.current_3794 .light-b2ae {
    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;
}

.status-clean-82ba {
    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);
}

.logo_415a {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.photo_79ce {
    list-style: none;
    padding: 0;
    margin: 0;
}

.photo_79ce 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;
}

.photo_79ce li:last-child {
    border-bottom: none;
}

.photo_79ce li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.paragraph-b594 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .paragraph-b594 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .paragraph-b594 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tabs-6d93 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.tabs-6d93:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.bright-7eff {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.hover-tall-7cd7 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.article_tiny_1993 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.pro_892b {
    font-size: 1rem;
}

.icon_center_58e0 {
    padding: 1.5rem;
}

.footer_medium_adff {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.green-8992 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.green-8992 .element-narrow-aff4 {
    text-align: center;
}

.green-8992 .outer_8716 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.green-8992 .glass-03f8 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.icon_c926 {
    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);
}

.icon_c926:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.link-east-eed4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .link-east-eed4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gradient_b773 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.gradient_b773:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.black_5e3a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.paragraph_a725 {
    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);
}

.secondary_pink_e3ba {
    font-size: 2rem;
    flex-shrink: 0;
}

.in-54ef {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.modal-cold-e461 {
    color: var(--text-gray);
    line-height: 1.6;
}

.in-e390 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.photo_ae00 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dynamic-b8c1 {
    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);
}

.background_6e04 {
    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;
}

.background_6e04.bronze_b554 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.background_6e04.gallery-smooth-c879 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.background_6e04.pagination-1279 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.background_6e04.frame-right-ce99 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.background_6e04.sidebar_glass_27ff {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.alert_thick_1276 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.blue_3f7a {
    color: var(--text-gray);
    line-height: 1.6;
}

.frame_f80d {
    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);
}

.selected-0078 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.filter-b807 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-b807 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.filter-b807 li:last-child {
    border-bottom: none;
}

.filter-b807 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.video-0178 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .video-0178 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .video-0178 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.button-solid-3ff8 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.button-solid-3ff8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.button-solid-3ff8.backdrop_clean_472e {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .button-solid-3ff8.backdrop_clean_472e {
        grid-column: span 3;
    }
}

.avatar_slow_9458 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.button-solid-3ff8.backdrop_clean_472e .avatar_slow_9458 {
    background: rgba(6, 182, 212, 0.1);
}

.smooth_ed85 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.module_gold_cb60 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.button-solid-3ff8.backdrop_clean_472e .module_gold_cb60 {
    color: var(--info-color);
}

.pagination_0a56 {
    padding: 1.5rem;
    text-align: center;
}

.pagination_cdc3 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.button-solid-3ff8.backdrop_clean_472e .pagination_cdc3 {
    color: var(--info-color);
}

.container-stale-2dd7 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.cool_1000 {
    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 */
.surface_53de {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .surface_53de {
        grid-template-columns: repeat(4, 1fr);
    }
}

.prev_8d9b {
    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);
}

.prev_8d9b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.box_first_f41d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tall_aed5 {
    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);
}

.title_ccaa {
    font-size: 2rem;
    flex-shrink: 0;
}

.soft-3d0d {
    flex: 1;
}

.next-c998 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.next-e6d3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.highlight-f822 {
    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);
}

.element-gold-b84a {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.paragraph-over-c603 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.description_easy_6433 {
    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_huge_dc24 {
  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_huge_dc24 .element-narrow-aff4 {
    text-align: center;
}

.column_huge_dc24 .banner_full_3692 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.column_huge_dc24 .outer_8716 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.content-e4b6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.text-black-c331 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.lite-180b {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.search-3e62 {
    color: var(--text-gray);
    line-height: 1.6;
}

.modal_7653 {
    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);
}

.tooltip_7969 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.left-e7ef {
    color: var(--text-gray);
    line-height: 1.6;
}

.label-outer-99f7 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .label-outer-99f7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .label-outer-99f7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.center_fca6 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.center_fca6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.narrow-3909 {
    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);
}

.header_hovered_b011 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.nav_fixed_e38e {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.aside-1f5b {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.aside-1f5b.pattern-static-328e {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.aside-1f5b.alert-last-ca52 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.aside-1f5b.secondary-c07a {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.form_7e15 {
    padding: 1.5rem;
    text-align: center;
}

.summary-short-f20d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.video_east_c2d9 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.video_east_c2d9 .media-fast-7f98 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.basic_8b1e {
    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);
}

.basic_8b1e:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.solid_1184 {
  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);
}

.paragraph_4932 {
    text-align: center;
}

.paragraph_4932 .banner_full_3692 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.paragraph_4932 .outer_8716 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.center-8c17 { text-align: center; }
.narrow-54ed { text-align: left; }
.disabled-dcba { text-align: right; }

.notification-pressed-1bef { margin-bottom: 0; }
.easy-6041 { margin-bottom: 0.5rem; }
.center_ec3e { margin-bottom: 1rem; }
.focused_c98f { margin-bottom: 1.5rem; }
.detail_under_3653 { margin-bottom: 2rem; }

.texture_inner_9237 { margin-top: 0; }
.filter-e1c0 { margin-top: 0.5rem; }
.input_2fad { margin-top: 1rem; }
.progress_77c9 { margin-top: 1.5rem; }
.alert_9a63 { margin-top: 2rem; }

.fn-hidden-0642 { display: none; }
.fn-visible-0642 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .list-liquid-805b {
        padding: 6rem 0 3rem;
    }
    
    .footer-solid-2b75 {
        text-align: center;
    }
    
    .label-b4f3 {
        text-align: center;
    }
    
    .slow_be1b {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .list_solid_6574,
    .element_033d,
    .popup_431b,
    .mask-0f50 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .list-liquid-805b {
        background: none;
    }
}

/* Providers Section */
.container-pro-6143 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.highlight_tiny_1b0d {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .highlight_tiny_1b0d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .highlight_tiny_1b0d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hot-8e25 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.hot-8e25:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.hovered_1087 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cool_0fc7 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.row-fc69 {
    list-style: none;
    padding: 0;
}

.row-fc69 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.row-fc69 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.surface-3b0c {
    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);
}

.surface-3b0c p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.small_39b3 {
    padding: var(--section-padding);
}

.photo_04ab {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .photo_04ab {
        grid-template-columns: repeat(3, 1fr);
    }
}

.menu_under_6e25 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.menu_under_6e25:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.list_dim_0f0b {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.shade-86db {
    display: flex;
    flex-direction: column;
}

.image_wood_0359 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.bright_5d9d {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.element_0309 {
    color: var(--accent-color);
}

.section_f9c0 {
    font-size: 1.25rem;
}

.block_ae65 {
    margin-bottom: 1rem;
}

.block_ae65 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.badge-fe54 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.plasma-5e14 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.element-narrow-aff4 {
    text-align: center;
}

.banner_full_3692 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.outer_8716 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.form-dim-6a52 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hard-388a {
    margin: 2rem 0;
}

.pro_ce73 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.pro_ce73 .info-3541 {
    font-size: 2rem;
    flex-shrink: 0;
}

.next-3191 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.info_bottom_6056 {
    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;
}

.info_bottom_6056:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.pressed-17e2 {
    font-size: 2rem;
}

.breadcrumb_001b {
    display: flex;
    flex-direction: column;
}

.media-bronze-b91f {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.module-750f {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.wood_daeb {
    padding: var(--section-padding);
}

.pink-8ce5 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .pink-8ce5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pink-8ce5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.progress_1f69 {
    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);
}

.progress_1f69:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.progress_1f69 .banner_full_3692 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.progress_1f69 .outer_8716 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.progress_1f69 .tooltip-small-8a92 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.preview_selected_e3eb {
    margin-top: 4rem;
}

.text_3479 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.table-tiny-9bea {
    overflow-x: auto;
}

.tertiary-a628 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.tertiary-a628 thead {
    background: var(--accent-color);
}

.tertiary-a628 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.tertiary-a628 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.tertiary-a628 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.tertiary-a628 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.wood-c276 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.aside_fresh_0b84 {
    max-width: 900px;
    margin: 0 auto;
}

.accordion_center_af5b {
    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);
}

.accordion_center_af5b:hover {
    border-color: var(--accent-color);
}

.breadcrumb-clean-4fda {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.breadcrumb-clean-4fda h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.sort_4e89 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.accordion_center_af5b.fn-active-0642 .sort_4e89 {
    transform: rotate(45deg);
}

.outline_cf5d {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.accordion_center_af5b.fn-active-0642 .outline_cf5d {
    max-height: 1000px;
}

.outline_cf5d p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.yellow-761a {
    padding: var(--section-padding);
}

.frame-6672 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.texture-3798 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.focus_pink_1767 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .focus_pink_1767 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.title-d6b4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gradient_advanced_ade7 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.upper-ca68 {
    font-size: 2rem;
}

.wrapper_c4e6 {
    color: var(--text-white);
    margin: 0;
}

.aside-8cce {
    list-style: none;
    padding: 0;
}

.aside-8cce li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.aside-8cce li:last-child {
    border-bottom: none;
}

.status-cold-2e11 {
    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);
}

.status-cold-2e11 p {
    color: var(--success-color);
    margin: 0;
}

.out-fde4 {
    margin-top: 3rem;
}

.logo_415a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.search-red-e2c6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .search-red-e2c6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.under-4869 {
    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);
}

.heading-71c1 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.under-4869 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.over-86bf {
    padding: var(--section-padding);
}

.orange-7c62 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .orange-7c62 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.box_white_76c1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.box_white_76c1:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.secondary-07e2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.filter_tiny_50bd {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.center-b3be {
    flex: 1;
}

.pattern_c7a7 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.table-d850 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.tabs-2dc0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.alert-up-1ae0 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.alert-up-1ae0:last-child {
    border-bottom: none;
}

/* Comparison Section */
.photo-smooth-2a54 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.wrapper-short-3342 {
    padding: var(--section-padding);
}

.table_rough_e7e9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.pro-f31c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pro-f31c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hover_346b {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.left-3ce2, .preview-outer-8c46, .component-79e3 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.component-79e3 {
    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 */
.in-794f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.menu-cool-d388 {
    margin: 2rem 0;
}

.stone_d6ac {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.aside-pressed-2fdd {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.detail_liquid_9c82 {
    list-style: none;
    padding: 0;
}

.detail_liquid_9c82 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;
}

.detail_liquid_9c82 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.detail_liquid_9c82 li:last-child {
    border-bottom: none;
}

.focused-47cf {
    text-align: center;
    margin-top: 2rem;
}

.tertiary-b113 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.current-5648 {
    padding: var(--section-padding);
}

.section_under_1695 {
    margin: 2rem 0;
}

.short_21e2 {
    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) {
    .short_21e2 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.short_21e2:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.paragraph_west_6596 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.dynamic-3ed7 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.banner_6370 {
    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;
}

.basic_e59a {
    flex: 1;
}

.gold-3a10 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.fresh-b02b {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.card_silver_2e2b {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.link-1bf1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .link-1bf1 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.wood-d36c {
    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);
}

.wood-d36c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.wood-d36c .banner_full_3692 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.wood-d36c .outer_8716 {
    color: var(--text-gray);
    font-size: 1rem;
}

.primary_0f56 {
    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-3e5b {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.highlight-3e5b strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.nav-cool-099a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .nav-cool-099a {
        grid-template-columns: 1fr 1fr;
    }
}

.paper_f35b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.background-9075 {
    margin-bottom: 1.5rem;
}

.background-9075 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.background-9075 input,
.background-9075 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;
}

.background-9075 input:focus,
.background-9075 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.dropdown_332d {
    width: 100%;
    margin-top: 1rem;
}

.pagination_wide_dc99 {
    display: flex;
    align-items: center;
}

.gallery-e83a {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.modal-full-0705 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.sort-center-1af4 {
    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;
}

.green_dd21 {
    color: var(--text-gray);
}

.static_c88b {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.pink-173a {
    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);
}

.pink-173a p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.under-979a {
    margin-top: 3rem;
}

.wrapper-0aac {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.blue_3f08 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.title-6c19 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.gold-d122 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gold-d122:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.detail-bottom-dd64 {
    padding: var(--section-padding);
}

.input_b145 {
    margin: 2rem 0;
}

.narrow_72f7 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.image_in_f2c3 {
    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;
}

.image_in_f2c3:hover, .image_in_f2c3.fn-active-0642 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.yellow-c4b6 {
    display: none;
}

.yellow-c4b6.fn-active-0642 {
    display: block;
}

.tabs_right_8088 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shadow_fluid_340b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.surface-plasma-1411 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.surface-plasma-1411 ul {
    list-style: none;
    padding: 0;
}

.surface-plasma-1411 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.surface-plasma-1411 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.carousel_73a3 {
    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 */
.upper_b17a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.detail-red-3fe7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.link-3d90 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.pagination_bronze_12bc {
    color: var(--accent-color);
    margin: 0;
}

.rough-84b7 {
    display: flex;
    gap: 1.5rem;
}

.header-current-70f7 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.advanced-199f {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.clean_4376 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.clean_4376.dynamic-e4de {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.clean_4376.east_1623 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.clean_4376.detail_middle_eca6 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.full-8731 {
    margin-top: 2rem;
}

.dim_2386 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.video-liquid-bcb8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .video-liquid-bcb8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.liquid_c13f {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.content-north-812e {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.wide_5be2 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.banner_1f8e {
    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 */
.heading-slow-9f57 {
    padding: var(--section-padding);
}

.status_2c16 {
    margin: 2rem 0;
}

.west-d556 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.content-f734 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.tabs_pressed_ea97 {
    list-style: none;
    padding: 0;
}

.tabs_pressed_ea97 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;
}

.tabs_pressed_ea97 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.tabs_pressed_ea97 li:last-child {
    border-bottom: none;
}

.search-bd08 {
    margin: 2rem 0;
}

.column-5e53 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.mini_cfc0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .mini_cfc0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.middle_80a0 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.video_09cd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.grid_f7b9 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.fluid_70c6 {
    margin-top: 2rem;
}

.steel_7a6d {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.preview-1cc2 {
    list-style: none;
    padding: 0;
}

.paragraph_9a30 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.paragraph_9a30 a {
    color: var(--accent-color);
    text-decoration: none;
}

.paragraph_9a30 a:hover {
    text-decoration: underline;
}

.hero_current_7481 {
    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 */
.selected-5db0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.feature-7590 {
    margin: 2rem 0;
}

.first_6bb8 {
    margin-bottom: 3rem;
}

.first_6bb8 .aside-pressed-2fdd {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.hover-fixed-c3c4 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.article-2363 {
    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);
}

.article-2363:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.info_warm_e810 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .info_warm_e810 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cold-b7aa {
    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 */
.soft-f119 {
    padding: var(--section-padding);
}

.tooltip-ae7f {
    margin: 2rem 0;
}

.search_22f4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.logo_prev_d5e1 {
    overflow-x: auto;
    margin: 2rem 0;
}

.west_44af {
    background: rgba(6, 182, 212, 0.1) !important;
}

.next_20b2 {
    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;
}

.dirty-f031 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.south-57f1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .south-57f1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.accordion-f30a {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.accordion-f30a .info-3541 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.accordion-f30a .active-efe8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.video-ec80 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.middle_4a20 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.video_south_bd79 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .video_south_bd79 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.small_ec0d {
    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;
}

.small_ec0d:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.paragraph_2e85 {
    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);
}

.shade_5a24 {
    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;
}

.logo-700b {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.panel_fixed_1754 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.tertiary-d09b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.heading-south-fc70 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.last-4706 {
    color: var(--text-white);
    font-weight: 600;
}

.main_d16b {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.frame_9dcb {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.frame_9dcb .light-b2ae {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.last-3544 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .last-3544 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.shade_top_63ba {
    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);
}

.shade_top_63ba:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.shade_top_63ba .banner_full_3692 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.shade_top_63ba .outer_8716 {
    color: var(--text-gray);
    font-size: 1rem;
}

.bright-883c {
    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);
}

.text-east-62e2 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.text-east-62e2 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.easy-bbee {
    margin: 2rem 0;
}

.active-6a41 {
    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);
}

.active-6a41:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.shade_plasma_c99b {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.accent_4178 {
    flex: 1;
}

.info-plasma-dce6 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.layout_purple_d9cc {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.wood-c631 {
    margin: 2rem 0;
}

.status_solid_b91a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.status_solid_b91a .active-efe8 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.status_solid_b91a .lower-8e1b {
    color: var(--text-gray);
    margin: 0;
}

.dim_85b2 {
    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);
}

.dim_85b2 .carousel-iron-0641 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.video-ec80 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.stale-1e50 {
    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;
}

.panel_advanced_b94d {
    flex: 1;
}

.text_6238 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.container_glass_8b0f {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.description-2788 {
    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;
}

.orange_c766 {
    flex: 1;
}

.stone_98d9 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.gallery-2584 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.filter_68d2 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.section-70bf {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.current_3794 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.current_3794 .light-b2ae {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.status-clean-82ba {
    margin-top: 2rem;
}

.status-clean-82ba .logo_415a {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.black-78cb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.progress-ffba {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .progress-ffba {
        grid-template-columns: repeat(4, 1fr);
    }
}

.progress-ffba .element-narrow-aff4 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.breadcrumb_2c8c {
    margin: 2rem 0;
}

.wide-ac46 {
    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 */
.black_18b1 {
    padding: var(--section-padding);
}

.over-7f52 {
    margin-top: 1rem;
}

.menu_orange_9df1 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.menu_orange_9df1 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.menu_orange_9df1 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.badge_short_6c14 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.avatar_smooth_28a5 {
    margin: 2rem 0;
}

.cold-f536 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.box_soft_2e9b {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.block_42f8 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.under-772e {
    margin: 2rem 0;
}

.box-933e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.box-933e .aside-pressed-2fdd {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.link_f95f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .link_f95f {
        grid-template-columns: repeat(2, 1fr);
    }
}

.table_lite_86ac {
    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);
}

.last-d713 {
    color: var(--text-white);
    font-weight: 600;
}

.banner_pink_3dec {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.picture-1684 {
    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);
}

.picture-1684 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.caption_copper_7e2c {
    padding: var(--section-padding);
}

.heading-complex-be47 {
    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;
}

.heading-complex-be47:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.tag-full-5df3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tag-full-5df3 .heading-71c1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tag-full-5df3 .accordion_431a {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.right_b1e3 {
    flex: 1;
}

.static-b7a3 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.center_5584 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.center_5584 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.center_5584 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.tag-92e5 {
    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);
}

.tag-92e5 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.tag-92e5 strong {
    color: var(--warning-color);
}

/* Slots Section */
.last_290d {
    padding: var(--section-padding);
}

.carousel-b50f {
    margin: 2rem 0;
}

/* Table Games Section */
.detail-d3b4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hidden-hard-27f8 {
    margin: 2rem 0;
}

.picture_lite_43c7 {
    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);
}

.picture_lite_43c7:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.picture_lite_43c7 .article_tiny_1993 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.picture_lite_43c7 .footer_medium_adff {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.menu-upper-34a2 {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.menu-upper-34a2 .carousel-iron-0641 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.video_e90b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.media-dfc6 {
    margin: 2rem 0;
}

.filter_6aa8 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.short_a3b9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.right_8060 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.next-a831 {
    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);
}

.next-a831:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.next-a831.fn-active-0642 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.search-advanced-8d78 {
    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);
}

.smooth_62ca {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.smooth_62ca strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.secondary-d504 {
    padding: var(--section-padding);
}

.layout-bright-48d6 {
    margin: 2rem 0;
}

.tabs-wide-8848 {
    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);
}

.tabs-wide-8848:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .tabs-wide-8848 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.lower-6225 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.module-e038 {
    flex: 1;
}

.background-in-5cdb {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.brown_b52f {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.shadow-light-796d {
    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;
}

.modal_middle_1436 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.silver-9dc2 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.search_under_1121 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.menu_up_f25b {
    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;
}

.menu_up_f25b:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.text_007a {
    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);
}

.main_fluid_0a96 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.main_fluid_0a96 strong {
    color: var(--accent-color);
}

/* New Games Section */
.row-dark-e543 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.paragraph_basic_e0b5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .paragraph_basic_e0b5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .paragraph_basic_e0b5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.menu-dirty-5cf5 {
    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;
}

.menu-dirty-5cf5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.pagination_dark_890a {
    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;
}

.photo-4f62 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.status_dark_719c {
    font-size: 2rem;
}

.notice-bb68 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.narrow-0a6b {
    flex: 1;
}

.hero-2504 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.button_6bb8 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.overlay-center-eb87 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.widget_east_54af {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.chip-d1e0 {
    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;
}

.link-24cd {
    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;
}

.link-24cd:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.aside-9987 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.info_f7fc {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.full_cb73 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .full_cb73 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sort_1b37 {
    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);
}

.container_7d4e {
    color: var(--text-white);
    font-weight: 600;
}

.content-2fb3 {
    color: var(--accent-color);
    font-weight: 600;
}

.button_selected_762b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.button_selected_762b strong {
    color: var(--accent-color);
}

/* Security Section */
.progress-hard-aeca {
    padding: var(--section-padding);
}

/* Benefits Section */
.huge-424f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.steel_dd0d {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.popup_bronze_600e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.menu-white-fd8d {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.block_clean_c74a {
    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) {
    .block_clean_c74a {
        flex-direction: column;
        gap: 1rem;
    }
}

.block_clean_c74a:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.block_clean_c74a .description-2788 {
    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;
}

.block_clean_c74a .orange_c766 {
    flex: 1;
}

.block_clean_c74a .stone_98d9 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.block_clean_c74a .gallery-2584 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.red_115a {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.red_115a .next-c998 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.red_115a .thick-e512 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.red_115a .thick-e512 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.red_115a .thick-e512 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.surface_easy_2ed8 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.upper-140f {
    padding: var(--section-padding);
}

.smooth-dbaa {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .smooth-dbaa {
        grid-template-columns: repeat(3, 1fr);
    }
}

.paragraph_071b {
    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);
}

.paragraph_071b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.paragraph_071b .texture_solid_9f08 {
    font-size: 2rem;
    flex-shrink: 0;
}

.paragraph_071b .narrow_d3ec {
    flex: 1;
}

.paragraph_071b .simple_72d3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.paragraph_071b .element_red_d804 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.green-50b8 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.green-50b8 .hover-medium-0c15 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.green-50b8 .gallery_bottom_e018 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.green-50b8 .gallery_bottom_e018 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);
}

.green-50b8 .gallery_bottom_e018 li:last-child {
    border-bottom: none;
}

.green-50b8 .gallery_bottom_e018 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;
}

.green-50b8 .gallery_bottom_e018 li strong {
    color: var(--text-white);
}

.overlay-under-8051 {
    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);
}

.overlay-under-8051 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.overlay-under-8051 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.search_down_c29c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.row-tall-9abf {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .row-tall-9abf {
        grid-template-columns: repeat(2, 1fr);
    }
}

.photo-9327 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.photo-9327:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.accent_529d {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.light_38a7 {
    font-size: 2rem;
}

.overlay-fast-63a1 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.huge-44eb {
    flex: 1;
}

.clean-591c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.clean-591c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.clean-591c li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.search-copper-0003 {
    margin-top: 3rem;
}

.west-d556 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.content-f734 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tabs_pressed_ea97 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tabs_pressed_ea97 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.tabs_pressed_ea97 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.tabs_pressed_ea97 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.filter-blue-aa70 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.slider-4ba8 {
    margin: 2rem 0;
}

.description_yellow_b2cc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.description_yellow_b2cc .aside-pressed-2fdd {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.form-be65 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .form-be65 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.plasma_e360 {
    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);
}

.plasma_e360:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.slow-5ab1 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tag-stale-7a1c {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.notice-316b {
    padding: var(--section-padding);
}

.backdrop-3a29 {
    margin: 2rem 0;
}

.frame-db43 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .frame-db43 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .frame-db43 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-fe6e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.footer-fe6e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.wide-78ce {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.section_dynamic_ab88 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.description_stale_d66a {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.description_stale_d66a.tertiary-small-d251 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.copper_b3a3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.mask_5495 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.item_5936 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hovered_4852 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.layout-9f55 {
    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);
}

.layout-9f55 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.layout-9f55 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.progress-f597 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.sidebar_64b6 {
    margin: 2rem 0;
}

.thumbnail-fast-ac11 {
    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) {
    .thumbnail-fast-ac11 {
        flex-direction: column;
        gap: 1rem;
    }
}

.thumbnail-fast-ac11:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.thumbnail-fast-ac11::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);
}

.banner-inner-b124 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.hard_87b6 {
    flex: 1;
}

.filter-static-b250 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.wrapper_wood_164a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wrapper_wood_164a li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.fresh_2790 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.image-dark-41b3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.inner-0ebb {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .inner-0ebb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.brown_ef6b {
    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);
}

.sort_5317 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.banner_up_58c4 {
    flex: 1;
}

.texture_32cd {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.stale-bd29 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.form-purple-fe16 {
    margin-top: 2rem;
    text-align: center;
}

.texture_922b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.texture_922b strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.link-east-eed4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .link-east-eed4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gradient_b773 {
    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);
}

.gradient_b773:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.gradient_b773 .narrow_0c90 {
    font-size: 2rem;
    flex-shrink: 0;
}

.gradient_b773 .sidebar_mini_8807 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.gradient_b773 .preview_steel_1564 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.gradient_b773 .accordion_right_48cc {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.east-0ef5 {
    padding: var(--section-padding);
}

.paragraph_a725 .main-basic-d985 {
    flex: 1;
}

/* Promo Calendar Section */
.last_65cd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.accordion-4488 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accordion-4488 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.copper_47bc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outline-motion-46f3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.summary-first-33f1 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.border-large-05ec {
    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);
}

.upper-89ff {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.main_smooth_c3ff {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.thick-1ef1 {
    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);
}

.thick-1ef1 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.thick-1ef1 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.box_gas_8712 {
    padding: var(--section-padding);
}

.huge_b118 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .huge_b118 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.bottom_238e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tabs_c6f4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.video-f956 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.video-f956 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.smooth_53c1 {
    margin-top: 3rem;
}

.smooth_53c1 .west-d556 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.smooth_53c1 .content-f734 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.smooth_53c1 .tabs_pressed_ea97 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.smooth_53c1 .tabs_pressed_ea97 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.smooth_53c1 .tabs_pressed_ea97 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.smooth_53c1 .tabs_pressed_ea97 li strong {
    color: var(--warning-color);
}

.under_ed29 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.under_ed29 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.active-f0f8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.description_active_2d87 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .description_active_2d87 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tertiary_cc71 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tertiary_cc71 .aside-pressed-2fdd {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.liquid_4072 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.background-left-5ed1 {
    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);
}

.background-left-5ed1:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.outer-4095 {
    font-size: 2rem;
    flex-shrink: 0;
}

.next_6024 {
    flex: 1;
}

.badge-11df {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.south-49cd {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.notice-b110 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.label-top-f879 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.bronze_3585 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .bronze_3585 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.grid-8ee9 {
    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);
}

.grid-8ee9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.last-f3f3 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.yellow_f2a1 {
    color: var(--text-gray);
    font-size: 1rem;
}

.highlight-3e5b {
    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);
}

.brown-2208 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.brown-2208 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.warm_4832 { 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; }
.tabs_paper_5dae, .fluid_854b { max-width:100%; height:auto; }

.sidebar-f0e1, .heading_next_8f07, .form-bottom-9d8e { white-space:normal; }

.footer-solid-2b75,
.label-b4f3,
.surface_53de,
.link-east-eed4,
.wood-c631,
.label-outer-99f7 {
  flex-wrap:wrap;
}

[class*="grid"],
.bronze_3585,
.frame-db43,
.paper_6961 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.list-liquid-805b img,
.label-b4f3 img,
.focus-focused-301f img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.outline-solid-a6ac, .sort_short_b492,
.notification_down_8e18, .hovered_33a5 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.table-tiny-9bea { width:100%; overflow-x:auto; }
.table-tiny-9bea table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.highlight_tiny_1b0d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .highlight_tiny_1b0d {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.hot-8e25 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.pink-8ce5,
.west_7c5d,
.black_32b8,
.layout_focused_6b64,
.link-1bf1,
.bronze_3585,
.frame-db43,
.paper_6961,
.solid_1184,
.layout-bright-48d6,
.highlight_tiny_1b0d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .pink-8ce5,
  .west_7c5d,
  .black_32b8,
  .layout_focused_6b64,
  .link-1bf1,
  .bronze_3585,
  .frame-db43,
  .paper_6961,
  .solid_1184,
  .layout-bright-48d6,
  .highlight_tiny_1b0d {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.progress_1f69,
.wood-d36c,
.grid-8ee9,
.sidebar-hard-a5c6,
.footer-fe6e,
.paragraph_4932,
.tabs-wide-8848,
.hot-8e25 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.purple-6a52,
.backdrop-0e1f,
.up-3093 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.purple-6a52 > *,
.backdrop-0e1f > *,
.up-3093 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 75b8 */
.widget-item-v8 {
  padding: 0.1rem;
  font-size: 11px;
  line-height: 1.1;
}
