/* {$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;
}

.slider-0eac {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.notification-78fc {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .notification-78fc {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .notification-78fc {
        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 */
.message_fdb2 {
    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);
}

.background-hard-56af {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .background-hard-56af {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .texture-0d24 {
        grid-column: 1;
    }
    
    .picture-25d2 {
        grid-column: 2;
    }
    
    .focused_0379 {
        grid-column: 3;
    }
}

.texture-0d24 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.texture-0d24:hover img {
    transform: scale(1.05);
}

/* Navigation */
.prev-8b2c {
    display: none;
}

@media (min-width: 1024px) {
    .prev-8b2c {
        display: block;
    }
}

/* Grouped Navigation */
.out-e7d6 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.in-ee2e {
    position: relative;
}

.surface-a75b {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.in-ee2e .detail_c006 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.detail_c006 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.warm_5d4a {
    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;
}

.warm_5d4a:hover,
.warm_5d4a.fn-active-d59c {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.plasma_585c {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .plasma_585c {
        display: flex;
    }
}

/* Mobile Register Button */
.picture-25d2 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .picture-25d2 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.photo-fabc {
    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;
}

.photo-fabc::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 */
.focused_0379 {
    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) {
    .focused_0379 {
        display: none;
    }
}

.focused_0379 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.focused_0379.fn-active-d59c span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.focused_0379.fn-active-d59c span:nth-child(2) {
    opacity: 0;
}

.focused_0379.fn-active-d59c span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.wrapper-east-0479 {
    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;
}

.wrapper-east-0479.fn-active-d59c {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.wrapper-9d38 {
    overflow: hidden;
}

.notice-old-8543 {
    list-style: none;
    padding: 0.75rem 0;
}

.component_down_11fe {
    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;
}

.component_down_11fe:hover,
.component_down_11fe.fn-active-d59c {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.component_down_11fe.sidebar_5bfc {
    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;
}

.component_down_11fe.sidebar_5bfc::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 */
.disabled-warm-8d9f {
    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;
}

.photo_fixed_258b {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.photo_fixed_258b:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.label_gold_c5ba {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.label_gold_c5ba:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.caption-last-9f3a {
    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;
}

.caption-last-9f3a:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.motion-2e08 {
    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;
}

.pagination_east_8d7f {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.pagination_east_8d7f:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.copper_7bb1 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.copper_7bb1:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.summary_0157 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.summary_0157: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);
}

.sidebar-smooth-793e {
    font-size: 1em;
    font-weight: 700;
}

.column-dim-ebc9 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.accordion-east-256c {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.accordion-east-256c::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;
}

.link_9c90 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .link_9c90 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.widget_4af7 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.label-17c3 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.status-ad51 {
    margin-bottom: 2rem;
}

.complex-4ec0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .complex-4ec0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.iron-f424 {
    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);
}

.overlay_wide_7442 {
    font-size: 1.5rem;
}

.paper_3129 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.solid-edcf {
    display: flex;
    justify-content: center;
    align-items: center;
}

.paragraph-ad1f {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.paragraph-ad1f:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.tabs_upper_be23 {
    text-align: center;
    margin-bottom: 3rem;
}

.large_109b {
    margin-bottom: 1rem;
}

.button-red-50f0 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.liquid-cec1 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .liquid-cec1 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .liquid-cec1.dark_60ec {
        direction: rtl;
    }
    
    .liquid-cec1.dark_60ec > * {
        direction: ltr;
    }
}

.nav_706f {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.nav_706f:first-child {
    margin-top: 0;
}

.middle_4ce4 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.liquid_6194 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.liquid_6194:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.solid-b9be {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .solid-b9be {
        grid-template-columns: repeat(3, 1fr);
    }
}

.summary_mini_5e0e {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.picture_3bf8 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.avatar-last-f27e {
    list-style: none;
}

.avatar-last-f27e li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.avatar-last-f27e li:last-child {
    border-bottom: none;
}

/* Games Features */
.hovered_cede {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.layout_1bef {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.focused_da81 {
    font-size: 2rem;
    flex-shrink: 0;
}

.media_right_dc94 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.input_selected_6d02 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.inner-a220 {
    margin: 2rem 0;
}

.prev-4925 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.texture-f011 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.cold-3f1d {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.message-stone-645a {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.pagination_7f9a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pagination_7f9a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.component-29ec {
    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);
}

.component-29ec:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.main-over-61af {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.fixed-a173 {
    font-size: 1.5rem;
}

.main-fresh-16aa {
    color: var(--accent-color);
    margin: 0;
}

.accordion_cde9 {
    list-style: none;
}

.accordion_cde9 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.accordion_cde9 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.gallery-current-bbd7 {
    margin: 2rem 0;
}

.yellow-a9bd {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.current_9c0d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .current_9c0d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tiny_8f65 {
    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);
}

.hidden_7336 {
    font-size: 1.25rem;
}

.dirty-f81a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.message_tiny_2eea,
.dynamic-f35d {
    text-align: center;
    margin: 2rem 0;
}

.thumbnail_42f8,
.rough-c16e {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.paragraph_c225 {
    margin: 2rem 0;
    text-align: center;
}

.dirty_8c71 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.dirty_8c71::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;
}

.narrow-7c91 {
    position: relative;
    z-index: 1;
}

.button-ef0a {
    margin-bottom: 1rem;
}

.primary-selected-70fc {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.focus_c860 {
    margin-bottom: 3rem;
}

.shade-9285 {
    margin-top: 3rem;
}

.detail_in_c034 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .detail_in_c034 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.detail_in_c034 .iron-f424 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.title_white_7e3d {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.wrapper-7063 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.description-pro-95ca {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.photo_green_9149 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .photo_green_9149 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .photo_green_9149 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.hero_huge_7fe3 {
    margin-bottom: 1rem;
}

.column_slow_ef29 img {
    margin-bottom: 1rem;
}

.focus_6522 {
    color: var(--text-gray);
    line-height: 1.6;
}

.overlay_top_2412 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.notice_hot_3da2 {
    list-style: none;
}

.notice_hot_3da2 li {
    margin-bottom: 0.5rem;
}

.notice_hot_3da2 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.notice_hot_3da2 a:hover {
    color: var(--accent-color);
}

.green-5c3d {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.complex_09f6 {
    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);
}

.complex_09f6:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.tall-bdb1 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.tall-bdb1 p {
    margin-bottom: 0.25rem;
}

.box_old_ca16 {
    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) {
    .box_old_ca16 {
        flex-direction: row;
    }
}

.gallery-be19 {
    text-align: center;
}

@media (min-width: 768px) {
    .gallery-be19 {
        text-align: left;
    }
}

.gallery-be19 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.down_c5d8 {
    font-size: 0.75rem !important;
}

.out_187d {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.paper_963a {
    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);
    }
}

.cold_d5e4 {
    animation: fadeInUp 0.6s ease-out;
}

.layout_5c5e {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.popup-stale-2947 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .popup-stale-2947 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.nav-7db8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .nav-7db8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.heading-motion-235f {
    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);
}

.heading-motion-235f .focused_da81 {
    font-size: 1.25rem;
}

.heading-motion-235f .hero-9a15 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.paragraph-solid-594e {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .paragraph-solid-594e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gradient-dark-6c39 {
    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);
}

.gradient-dark-6c39:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.preview-upper-3c0c {
    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);
}

.black_8a25 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.paragraph_698a {
    color: var(--text-gray);
    line-height: 1.6;
}

.filter-d7fe {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.logo-f961 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.logo-f961 .media_right_dc94 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.logo-f961 .input_selected_6d02 {
    color: var(--text-gray);
    line-height: 1.6;
}

.secondary_purple_c989 {
    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);
}

.sort_f471 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.sort_f471 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.sort_f471 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.shade-dark-9ca0 {
    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);
}

.preview_bronze_08c4 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.header-wide-12b3 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.header-wide-12b3 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.header-wide-12b3 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);
}

.header-wide-12b3 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.header-wide-12b3 input::placeholder {
    color: var(--text-muted);
}

.black-7297 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.pagination-f256 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.pagination-f256 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.tertiary_fresh_cf48 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.tertiary_fresh_cf48:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.current_9c0d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .current_9c0d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tiny_8f65 {
    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);
}

.tiny_8f65 .hidden_7336 {
    font-size: 1.25rem;
}

.tiny_8f65 .dirty-f81a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.shadow_6d3f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.element-prev-8be4 {
    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);
}

.element-prev-8be4 .focused_da81 {
    font-size: 2rem;
    flex-shrink: 0;
}

.element-prev-8be4 .media_right_dc94 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.element-prev-8be4 .input_selected_6d02 {
    color: var(--text-gray);
    line-height: 1.6;
}

.focus-6c90 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.widget_8769 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.widget_8769 .pagination_stale_6ed6 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.widget_8769 .outline-b52f {
    color: var(--text-gray);
    line-height: 1.6;
}

.over-4627 {
    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_b2f3 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .panel_b2f3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.column_fluid_7d31 {
    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);
}

.column_fluid_7d31:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.notification-73f4 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.highlight_first_38ef {
    flex: 1;
}

.label_hovered_ed57 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.dropdown-40eb {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.dropdown-under-c860 {
    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);
}

.dropdown-under-c860:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.container_10a3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .container_10a3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.slider-motion-3776 {
    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);
}

.slider-motion-3776:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.down_a384 {
    font-size: 2rem;
    flex-shrink: 0;
}

.first_a313 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.message-7265 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.logo_small_02e0 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.description_out_954d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.notice-0963 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.shade-6be8 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.shade-6be8 .main-c0b9 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.shade-6be8 .card-top-2daf {
    color: var(--text-gray);
    line-height: 1.6;
}

.current_47d4 {
    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);
}

.pattern-hot-7b33 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sort_complex_4522 {
    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);
}

.sort_complex_4522 .focused_da81 {
    font-size: 2rem;
    flex-shrink: 0;
}

.sort_complex_4522 .media_right_dc94 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.sort_complex_4522 .input_selected_6d02 {
    color: var(--text-gray);
    line-height: 1.6;
}

.feature-warm-6f88 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .feature-warm-6f88 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.accent_cool_d2fc {
    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);
}

.accent_cool_d2fc:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.avatar_6ce6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .avatar_6ce6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.notice_6ae3 {
    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);
}

.notice_6ae3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pattern-fff5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.upper_031c {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.texture-f011 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.breadcrumb-d7a7 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.advanced-7f8c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.texture_hard_729b {
    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);
}

.texture_hard_729b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.video_west_d188 {
    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);
}

.overlay_motion_bc95 {
    flex: 1;
}

.header-blue-3cd1 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.mini-b6d5 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-up-2f58 {
    color: var(--text-gray);
    line-height: 1.6;
}

.gallery-basic-b5de {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.lite_7b6e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.lite_7b6e .pagination_stale_6ed6 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.lite_7b6e .outline-b52f {
    color: var(--text-gray);
    line-height: 1.6;
}

.dynamic-f35d {
    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);
}

.link-bb62 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .link-bb62 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.module_f509 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .module_f509 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.complex-068f {
    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);
}

.complex-068f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.button-cc11 {
    font-size: 2rem;
    flex-shrink: 0;
}

.layout_bottom_60f3 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.plasma_3ef9 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.liquid-b660 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.filter-66b0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.chip_down_ff27 {
    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);
}

.shadow-hard-e8eb {
    font-size: 2rem;
    flex-shrink: 0;
}

.icon-warm-1fa7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tall_62db {
    color: var(--text-gray);
    line-height: 1.6;
}

.pattern-hot-7b33 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sort_complex_4522 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.sort_complex_4522 .media_right_dc94 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.sort_complex_4522 .input_selected_6d02 {
    color: var(--text-gray);
    line-height: 1.6;
}

.title_bright_b5a5 {
    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);
}

.status-462a {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .status-462a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .status-462a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.blue-ae67 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.blue-ae67:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.text_smooth_f9cf {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.table-0489 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.gradient-7c05 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.slow_5937 {
    padding: 1.5rem;
}

.over-3fa6 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.component-98d0 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.component-98d0 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;
}

.component-98d0 li:last-child {
    border-bottom: none;
}

.component-98d0 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.green-46eb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .green-46eb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.shadow-7731 {
    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);
}

.shadow-7731:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.wide_4f17 {
    font-size: 2rem;
    flex-shrink: 0;
}

.light_4056 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.article_2622 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.text-c89e {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.chip-bright-64c9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.badge-7848 {
    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);
}

.widget_ac39 {
    font-size: 2rem;
    flex-shrink: 0;
}

.layout_1d5f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.feature-aa27 {
    color: var(--text-gray);
    line-height: 1.6;
}

.south_aa65 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.fixed_195b {
    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);
}

.iron-f031 {
    text-align: center;
}

.avatar-selected-dd20 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.orange_17a5 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.outline-cd8a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.first_1a4f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.first_1a4f .media_right_dc94 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.first_1a4f .input_selected_6d02 {
    color: var(--text-gray);
    line-height: 1.6;
}

.lite_068f {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .lite_068f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .lite_068f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.title_2a45 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.title_2a45:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tabs_2d94 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.form_8235 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.media_right_dc94 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.soft_9ac2 {
    padding: 1.5rem;
}

.input_selected_6d02 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.wood_b1a3 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wood_b1a3 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;
}

.wood_b1a3 li:last-child {
    border-bottom: none;
}

.wood_b1a3 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.highlight-c03a {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.stale_40d2 {
    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);
}

.stale_40d2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.modal_52ff {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.small-de8f {
    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);
}

.preview-upper-3c0c {
    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;
}

.black_8a25 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.paragraph_698a {
    color: var(--text-gray);
    line-height: 1.6;
}

.advanced_53d1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pro-610e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.primary_b17d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.overlay-6d0c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.secondary_stale_3c11 {
    display: flex;
    gap: 1rem;
}

.secondary_stale_3c11 .stone_93a0 {
    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;
}

.thumbnail-fixed-2764 {
    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);
}

.blue-8eba {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.tag-yellow-e84b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tag-yellow-e84b 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;
}

.tag-yellow-e84b li:last-child {
    border-bottom: none;
}

.tag-yellow-e84b li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.content_7079 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .content_7079 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .content_7079 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.picture_5047 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.picture_5047:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.image-7734 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.accordion-4e9c {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.main-c0b9 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.purple-8298 {
    font-size: 1rem;
}

.mask-db65 {
    padding: 1.5rem;
}

.card-top-2daf {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.photo-dirty-4a61 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.photo-dirty-4a61 .iron-f031 {
    text-align: center;
}

.photo-dirty-4a61 .orange_17a5 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.photo-dirty-4a61 .message_8872 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.hard-69c1 {
    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);
}

.hard-69c1:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.info-7ec4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .info-7ec4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dropdown-0629 {
    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);
}

.dropdown-0629:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.block_huge_ef53 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.progress-6ea5 {
    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);
}

.border_active_115d {
    font-size: 2rem;
    flex-shrink: 0;
}

.item_silver_d40d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.summary_west_2465 {
    color: var(--text-gray);
    line-height: 1.6;
}

.paragraph_a641 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.search-blue-46ba {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.mini-d61d {
    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);
}

.notice_selected_48d7 {
    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;
}

.notice_selected_48d7.widget_basic_a892 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.notice_selected_48d7.rough-a0ea {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.notice_selected_48d7.shade-narrow-81fa {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.notice_selected_48d7.main_cool_a6e3 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.notice_selected_48d7.link_tiny_e40a {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.caption_71f6 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.breadcrumb-top-5f61 {
    color: var(--text-gray);
    line-height: 1.6;
}

.caption-9419 {
    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);
}

.content-wood-bb1f {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.focus-6c90 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.focus-6c90 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;
}

.focus-6c90 li:last-child {
    border-bottom: none;
}

.focus-6c90 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.filter-hard-776e {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .filter-hard-776e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .filter-hard-776e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.advanced-59bb {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.advanced-59bb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.advanced-59bb.focus-95aa {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .advanced-59bb.focus-95aa {
        grid-column: span 3;
    }
}

.liquid_72e3 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.advanced-59bb.focus-95aa .liquid_72e3 {
    background: rgba(6, 182, 212, 0.1);
}

.down-34f1 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.header_d2b9 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.advanced-59bb.focus-95aa .header_d2b9 {
    color: var(--info-color);
}

.footer-in-25e9 {
    padding: 1.5rem;
    text-align: center;
}

.east_1eb2 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.advanced-59bb.focus-95aa .east_1eb2 {
    color: var(--info-color);
}

.card_lower_0837 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.bronze-b2c5 {
    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 */
.main_blue_eb64 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .main_blue_eb64 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.block-wide-6bf2 {
    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);
}

.block-wide-6bf2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.south-3910 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.element-prev-8be4 {
    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);
}

.hidden_7336 {
    font-size: 2rem;
    flex-shrink: 0;
}

.outline_static_0fab {
    flex: 1;
}

.yellow-a9bd {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.media_3125 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hover_c088 {
    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);
}

.notification-red-d8d8 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.label_fluid_4b12 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.paper_963a {
    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);
}

.dim_994e {
  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);
}

.dim_994e .iron-f031 {
    text-align: center;
}

.dim_994e .avatar-selected-dd20 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.dim_994e .orange_17a5 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.filter_pink_57b8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.shadow_d5ab {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hard-49c6 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.active-plasma-b648 {
    color: var(--text-gray);
    line-height: 1.6;
}

.bright-c62e {
    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);
}

.chip-pink-d86c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.image_e46e {
    color: var(--text-gray);
    line-height: 1.6;
}

.element_tall_8f7e {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .element_tall_8f7e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .element_tall_8f7e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.box-cold-cfde {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.box-cold-cfde:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pattern-silver-7824 {
    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);
}

.text-08e9 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.prev_1e53 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.left_dcfe {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.left_dcfe.preview_d671 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.left_dcfe.action_1340 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.left_dcfe.thick-5f08 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.pink_8741 {
    padding: 1.5rem;
    text-align: center;
}

.prev_7aca {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.column_2d9f {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.column_2d9f .middle-9eb7 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.primary_01d5 {
    display: block;
    width: 100%;
    background: var(--primary-gradient);
    color: var(--primary-bg);
    text-decoration: none;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-normal);
    border: 1px solid var(--accent-color);
}

.primary_01d5:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.medium_98fb {
  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);
}

.block_7bcc {
    text-align: center;
}

.block_7bcc .avatar-selected-dd20 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.block_7bcc .orange_17a5 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.gas_5dda { text-align: center; }
.thumbnail_f0bd { text-align: left; }
.summary_outer_d7e1 { text-align: right; }

.inner_cea3 { margin-bottom: 0; }
.column-0f44 { margin-bottom: 0.5rem; }
.wrapper_ee95 { margin-bottom: 1rem; }
.avatar_c1da { margin-bottom: 1.5rem; }
.slider_42dd { margin-bottom: 2rem; }

.hidden-stone-a768 { margin-top: 0; }
.filter-liquid-c2b0 { margin-top: 0.5rem; }
.outline-42ab { margin-top: 1rem; }
.caption_black_3c5e { margin-top: 1.5rem; }
.highlight-4667 { margin-top: 2rem; }

.fn-hidden-d59c { display: none; }
.fn-visible-d59c { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .accordion-east-256c {
        padding: 6rem 0 3rem;
    }
    
    .link_9c90 {
        text-align: center;
    }
    
    .liquid-cec1 {
        text-align: center;
    }
    
    .complex-4ec0 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .message_fdb2,
    .wrapper-east-0479,
    .dirty_8c71,
    .description-pro-95ca {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .accordion-east-256c {
        background: none;
    }
}

/* Providers Section */
.popup-820f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hot_14b8 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hot_14b8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hot_14b8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.row_0a0f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.row_0a0f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.paragraph-ced7 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.short_26cb {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.mask_0f97 {
    list-style: none;
    padding: 0;
}

.mask_0f97 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.mask_0f97 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.tooltip-707c {
    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);
}

.tooltip-707c p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.backdrop-bronze-1851 {
    padding: var(--section-padding);
}

.notice_7d68 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .notice_7d68 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.component_29cc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.component_29cc:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.north_fb93 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.popup-7cde {
    display: flex;
    flex-direction: column;
}

.liquid_d07c {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.search-clean-0846 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.main_a8b7 {
    color: var(--accent-color);
}

.image_first_d10f {
    font-size: 1.25rem;
}

.brown-c964 {
    margin-bottom: 1rem;
}

.brown-c964 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.thick-7a27 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.tooltip_7ac1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.iron-f031 {
    text-align: center;
}

.avatar-selected-dd20 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.orange_17a5 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.overlay-liquid-4430 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.focus-1e4c {
    margin: 2rem 0;
}

.last_37c6 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.last_37c6 .focused_da81 {
    font-size: 2rem;
    flex-shrink: 0;
}

.list_31c9 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.chip_fresh_d937 {
    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;
}

.chip_fresh_d937:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.green-94da {
    font-size: 2rem;
}

.large-9b27 {
    display: flex;
    flex-direction: column;
}

.wrapper-action-8862 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.banner-north-e669 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.carousel-1f0a {
    padding: var(--section-padding);
}

.search_8f8b {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .search_8f8b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .search_8f8b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tabs-mini-e8e2 {
    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);
}

.tabs-mini-e8e2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.tabs-mini-e8e2 .avatar-selected-dd20 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.tabs-mini-e8e2 .orange_17a5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.tabs-mini-e8e2 .container-273a {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.accent_ed6a {
    margin-top: 4rem;
}

.green_dcf8 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.tag_rough_c5ed {
    overflow-x: auto;
}

.down-64cc {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.down-64cc thead {
    background: var(--accent-color);
}

.down-64cc th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.down-64cc td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.down-64cc tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.down-64cc tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.layout_under_b8bd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.east_2e63 {
    max-width: 900px;
    margin: 0 auto;
}

.shadow_1afb {
    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);
}

.shadow_1afb:hover {
    border-color: var(--accent-color);
}

.modal_2271 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.modal_2271 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.hero_dim_c2b7 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.shadow_1afb.fn-active-d59c .hero_dim_c2b7 {
    transform: rotate(45deg);
}

.bottom-1520 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.shadow_1afb.fn-active-d59c .bottom-1520 {
    max-height: 1000px;
}

.bottom-1520 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.picture-95c9 {
    padding: var(--section-padding);
}

.sort_f471 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.cool_1ce1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tag_2a35 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tag_2a35 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.green_2048 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.texture_f327 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.heading_c9cd {
    font-size: 2rem;
}

.form_6aa4 {
    color: var(--text-white);
    margin: 0;
}

.medium-ed6f {
    list-style: none;
    padding: 0;
}

.medium-ed6f li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.medium-ed6f li:last-child {
    border-bottom: none;
}

.modal-outer-f666 {
    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);
}

.modal-outer-f666 p {
    color: var(--success-color);
    margin: 0;
}

.blue_3563 {
    margin-top: 3rem;
}

.blue-8eba {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.summary-lite-cd9f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .summary-lite-cd9f {
        grid-template-columns: repeat(2, 1fr);
    }
}

.search-b02d {
    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);
}

.icon-wide-bdcf {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.search-b02d p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.glass-e2b2 {
    padding: var(--section-padding);
}

.link-out-a600 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .link-out-a600 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.backdrop_action_f3f9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.backdrop_action_f3f9:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.avatar_next_22fd {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.component_medium_7337 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.main-cool-8f0b {
    flex: 1;
}

.input_5d16 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.outline-1f01 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.fresh_1e33 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hover-52e0 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hover-52e0:last-child {
    border-bottom: none;
}

/* Comparison Section */
.component-over-9be2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.light_9789 {
    padding: var(--section-padding);
}

.article-basic-0617 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.fluid-7e85 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fluid-7e85 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.carousel_bf2d {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.form-7139, .light-5938, .content-f72a {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.content-f72a {
    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 */
.section_0dd2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hovered-27d4 {
    margin: 2rem 0;
}

.thumbnail_inner_57b3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.large-a721 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.gradient_tiny_9eef {
    list-style: none;
    padding: 0;
}

.gradient_tiny_9eef 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;
}

.gradient_tiny_9eef li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.gradient_tiny_9eef li:last-child {
    border-bottom: none;
}

.caption-dirty-4ac1 {
    text-align: center;
    margin-top: 2rem;
}

.stale_88c5 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.complex_e307 {
    padding: var(--section-padding);
}

.pressed-3b12 {
    margin: 2rem 0;
}

.column_3a1d {
    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) {
    .column_3a1d {
        flex-direction: column;
        align-items: flex-start;
    }
}

.column_3a1d:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.fresh-c7ea {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.container-017d {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.section_df22 {
    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;
}

.focused_a128 {
    flex: 1;
}

.shade_up_5535 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.right-2546 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.secondary_small_b984 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.hovered_4c5e {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .hovered_4c5e {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.form_advanced_e813 {
    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);
}

.form_advanced_e813:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.form_advanced_e813 .avatar-selected-dd20 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.form_advanced_e813 .orange_17a5 {
    color: var(--text-gray);
    font-size: 1rem;
}

.title_dynamic_42a0 {
    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_b46e {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.text_b46e strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.pagination_24df {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .pagination_24df {
        grid-template-columns: 1fr 1fr;
    }
}

.header_3090 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.label-fast-6bfd {
    margin-bottom: 1.5rem;
}

.label-fast-6bfd label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.label-fast-6bfd input,
.label-fast-6bfd 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;
}

.label-fast-6bfd input:focus,
.label-fast-6bfd select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.silver_523b {
    width: 100%;
    margin-top: 1rem;
}

.shadow_2b5c {
    display: flex;
    align-items: center;
}

.current_4340 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.west-59f3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.fluid-e532 {
    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;
}

.chip-under-8213 {
    color: var(--text-gray);
}

.aside_hard_95b7 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.blue_4794 {
    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);
}

.blue_4794 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.message_white_3cbe {
    margin-top: 3rem;
}

.cool_d3ff {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.hard_4138 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.disabled_paper_e741 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.primary_dd04 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.primary_dd04:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.feature-fresh-4b42 {
    padding: var(--section-padding);
}

.sort-next-5e01 {
    margin: 2rem 0;
}

.avatar_4166 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.dark_bbf8 {
    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;
}

.dark_bbf8:hover, .dark_bbf8.fn-active-d59c {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.lower_6b80 {
    display: none;
}

.lower_6b80.fn-active-d59c {
    display: block;
}

.widget-ec80 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.surface-7567 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.footer-stale-c0b7 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.footer-stale-c0b7 ul {
    list-style: none;
    padding: 0;
}

.footer-stale-c0b7 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.footer-stale-c0b7 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.widget-smooth-0167 {
    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 */
.heading-middle-0cc2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.sidebar_outer_722d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pro_2e51 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.panel-easy-4484 {
    color: var(--accent-color);
    margin: 0;
}

.black_51e0 {
    display: flex;
    gap: 1.5rem;
}

.grid_3be2 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.cool-debf {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.secondary-d332 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.secondary-d332.pagination-5fcc {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.secondary-d332.wood_4fd5 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.secondary-d332.clean-5f4e {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.pagination_steel_5c14 {
    margin-top: 2rem;
}

.easy_0a27 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.outer-e87f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .outer-e87f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.shadow-e909 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.dark-f143 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.outer_f603 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.south-1054 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

/* Responsible Gaming Section */
.button_right_a31e {
    padding: var(--section-padding);
}

.purple_3212 {
    margin: 2rem 0;
}

.upper_1d6a {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.hero_full_dee1 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.pattern_steel_2bff {
    list-style: none;
    padding: 0;
}

.pattern_steel_2bff 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;
}

.pattern_steel_2bff li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.pattern_steel_2bff li:last-child {
    border-bottom: none;
}

.alert_white_c060 {
    margin: 2rem 0;
}

.stone-06d6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.white_f78e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .white_f78e {
        grid-template-columns: repeat(2, 1fr);
    }
}

.rough_e2bd {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dark-ac4f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.heading-west-de4a {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.breadcrumb_in_4216 {
    margin-top: 2rem;
}

.label_hovered_ed57 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.pattern-edd7 {
    list-style: none;
    padding: 0;
}

.background_08eb {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.background_08eb a {
    color: var(--accent-color);
    text-decoration: none;
}

.background_08eb a:hover {
    text-decoration: underline;
}

.action_b7dc {
    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 */
.caption-085f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.detail_soft_619e {
    margin: 2rem 0;
}

.gas-cbdd {
    margin-bottom: 3rem;
}

.gas-cbdd .large-a721 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.gradient-cool-4d64 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.pagination-c1d1 {
    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);
}

.pagination-c1d1:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.under_1827 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .under_1827 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.glass-0934 {
    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 */
.heading_active_9e4b {
    padding: var(--section-padding);
}

.main_short_b7bb {
    margin: 2rem 0;
}

.huge-6a83 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.north_b9f0 {
    overflow-x: auto;
    margin: 2rem 0;
}

.detail_prev_220f {
    background: rgba(6, 182, 212, 0.1) !important;
}

.form_c20f {
    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;
}

.banner_d95b {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.article-hot-c065 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .article-hot-c065 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.article-02cb {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.article-02cb .focused_da81 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.article-02cb .media_right_dc94 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.button-red-11fe {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.progress-black-74e3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.table_ceae {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .table_ceae {
        grid-template-columns: repeat(3, 1fr);
    }
}

.current_9358 {
    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;
}

.current_9358:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.table-brown-49cb {
    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);
}

.content-d248 {
    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;
}

.inner_6030 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.border-a85a {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.cool-e381 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.accent_eb41 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.light_916f {
    color: var(--text-white);
    font-weight: 600;
}

.primary_3df4 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.photo-gold-be60 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.photo-gold-be60 .stone_93a0 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.row_86ec {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .row_86ec {
        grid-template-columns: repeat(4, 1fr);
    }
}

.clean-dea5 {
    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);
}

.clean-dea5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.clean-dea5 .avatar-selected-dd20 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.clean-dea5 .orange_17a5 {
    color: var(--text-gray);
    font-size: 1rem;
}

.slider-plasma-f285 {
    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);
}

.module-0f1d {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.module-0f1d strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.filter-66b0 {
    margin: 2rem 0;
}

.chip_down_ff27 {
    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);
}

.chip_down_ff27:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.shadow-hard-e8eb {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.section-hard-5fd9 {
    flex: 1;
}

.icon-warm-1fa7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tall_62db {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.pattern-hot-7b33 {
    margin: 2rem 0;
}

.sort_complex_4522 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.sort_complex_4522 .media_right_dc94 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.sort_complex_4522 .input_selected_6d02 {
    color: var(--text-gray);
    margin: 0;
}

.title_bright_b5a5 {
    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);
}

.title_bright_b5a5 .thumbnail_42f8 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.button-red-11fe {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.video_west_d188 {
    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;
}

.overlay_motion_bc95 {
    flex: 1;
}

.mini-b6d5 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.feature-up-2f58 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.preview-upper-3c0c {
    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;
}

.mask_left_2ab5 {
    flex: 1;
}

.black_8a25 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.paragraph_698a {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.primary_b17d {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.overlay-6d0c {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.secondary_stale_3c11 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.secondary_stale_3c11 .stone_93a0 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.thumbnail-fixed-2764 {
    margin-top: 2rem;
}

.thumbnail-fixed-2764 .blue-8eba {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.description_center_9925 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.fixed_195b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .fixed_195b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fixed_195b .iron-f031 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outline-cd8a {
    margin: 2rem 0;
}

.first_1a4f {
    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 */
.paragraph_mini_50c7 {
    padding: var(--section-padding);
}

.soft_9ac2 {
    margin-top: 1rem;
}

.wood_b1a3 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.wood_b1a3 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.wood_b1a3 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.focus_c706 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.next-687e {
    margin: 2rem 0;
}

.picture_soft_015b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.easy_1235 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.red_868a {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.tag-mini-82bb {
    margin: 2rem 0;
}

.light_03bb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.light_03bb .large-a721 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.main-focused-ceac {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .main-focused-ceac {
        grid-template-columns: repeat(2, 1fr);
    }
}

.module-fluid-2c1f {
    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);
}

.column-short-5c80 {
    color: var(--text-white);
    font-weight: 600;
}

.block_plasma_b11d {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.fixed-e3a6 {
    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);
}

.fixed-e3a6 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.progress-4132 {
    padding: var(--section-padding);
}

.caption-94bd {
    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;
}

.caption-94bd:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.new-9410 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.new-9410 .icon-wide-bdcf {
    font-size: 2rem;
    flex-shrink: 0;
}

.new-9410 .thumbnail_4c4b {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.summary_cf10 {
    flex: 1;
}

.picture_left_253d {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.wood-9acf {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wood-9acf li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.wood-9acf li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.slider-b464 {
    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);
}

.slider-b464 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.slider-b464 strong {
    color: var(--warning-color);
}

/* Slots Section */
.static_bce0 {
    padding: var(--section-padding);
}

.description_out_954d {
    margin: 2rem 0;
}

/* Table Games Section */
.outer-bfd6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.notice-0963 {
    margin: 2rem 0;
}

.shade-6be8 {
    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);
}

.shade-6be8:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.shade-6be8 .main-c0b9 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.shade-6be8 .card-top-2daf {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.current_47d4 {
    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);
}

.current_47d4 .thumbnail_42f8 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.icon_medium_828b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.image-out-7d08 {
    margin: 2rem 0;
}

.block_pressed_2b72 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.picture-e1d2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.button_gold_f12e {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tertiary-old-55ab {
    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);
}

.tertiary-old-55ab:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.tertiary-old-55ab.fn-active-d59c {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gallery_0a43 {
    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);
}

.article-ca2d {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.article-ca2d strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.overlay_8634 {
    padding: var(--section-padding);
}

.dropdown-action-812a {
    margin: 2rem 0;
}

.breadcrumb_7fdd {
    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);
}

.breadcrumb_7fdd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .breadcrumb_7fdd {
        flex-direction: column;
        align-items: flex-start;
    }
}

.shade-f6eb {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.footer_basic_687d {
    flex: 1;
}

.description-5e59 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.tertiary_white_370a {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.clean-51f5 {
    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;
}

.disabled_slow_9033 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.breadcrumb_026c {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.focus-north-bfac {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.middle_6d02 {
    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;
}

.middle_6d02:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.slider-7b36 {
    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);
}

.accent_aeea {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.accent_aeea strong {
    color: var(--accent-color);
}

/* New Games Section */
.link-4b7d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.outer_8145 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .outer_8145 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .outer_8145 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tertiary-small-3d24 {
    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;
}

.tertiary-small-3d24:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.detail_east_96ee {
    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;
}

.footer_f37d {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.label_next_157a {
    font-size: 2rem;
}

.component-a2b8 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.filter_gas_fee1 {
    flex: 1;
}

.smooth_b019 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.dropdown-solid-63e0 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.aside_up_46e4 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.brown-f15a {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tooltip-bright-d2b7 {
    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;
}

.dark_e7c7 {
    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;
}

.dark_e7c7:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.widget-8a87 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.status_07ce {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.sort-339d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .sort-339d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.prev-dfa9 {
    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);
}

.lite-11fd {
    color: var(--text-white);
    font-weight: 600;
}

.message-0ed9 {
    color: var(--accent-color);
    font-weight: 600;
}

.glass_4dc5 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.glass_4dc5 strong {
    color: var(--accent-color);
}

/* Security Section */
.popup_gold_1ad2 {
    padding: var(--section-padding);
}

/* Benefits Section */
.pink_a268 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.label-ffdc {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.gas-b41e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.notification-motion-796b {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.tiny_5d41 {
    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) {
    .tiny_5d41 {
        flex-direction: column;
        gap: 1rem;
    }
}

.tiny_5d41:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.tiny_5d41 .preview-upper-3c0c {
    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;
}

.tiny_5d41 .mask_left_2ab5 {
    flex: 1;
}

.tiny_5d41 .black_8a25 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.tiny_5d41 .paragraph_698a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.picture-selected-f7e1 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.picture-selected-f7e1 .yellow-a9bd {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.picture-selected-f7e1 .shadow_6d3f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.picture-selected-f7e1 .shadow_6d3f li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.picture-selected-f7e1 .shadow_6d3f li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.easy_26a8 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.gradient_cool_4a26 {
    padding: var(--section-padding);
}

.hover_8e53 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .hover_8e53 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.text-f94a {
    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);
}

.text-f94a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.text-f94a .smooth_0df1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.text-f94a .main-huge-bf21 {
    flex: 1;
}

.text-f94a .pagination_stale_6ed6 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.text-f94a .tag-11e1 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.wrapper-iron-e425 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wrapper-iron-e425 .right_900e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.wrapper-iron-e425 .slow_1b4c {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.wrapper-iron-e425 .slow_1b4c 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);
}

.wrapper-iron-e425 .slow_1b4c li:last-child {
    border-bottom: none;
}

.wrapper-iron-e425 .slow_1b4c 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;
}

.wrapper-iron-e425 .slow_1b4c li strong {
    color: var(--text-white);
}

.content_last_b5d2 {
    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);
}

.content_last_b5d2 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.content_last_b5d2 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.large_ff38 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pressed-1e5d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .pressed-1e5d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.layout_0839 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.layout_0839:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.light_df42 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.label_287c {
    font-size: 2rem;
}

.menu_a09f {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.input-bottom-4540 {
    flex: 1;
}

.accordion_right_289d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accordion_right_289d li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.accordion_right_289d li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.label_simple_9da7 {
    margin-top: 3rem;
}

.upper_1d6a {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.hero_full_dee1 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.pattern_steel_2bff {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pattern_steel_2bff li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.pattern_steel_2bff li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.pattern_steel_2bff li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.input-green-d675 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.overlay-wide-c847 {
    margin: 2rem 0;
}

.dark_f3cc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.dark_f3cc .large-a721 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.popup_487b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .popup_487b {
        grid-template-columns: repeat(2, 1fr);
    }
}

.up_f887 {
    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);
}

.up_f887:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.fixed-52a6 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.link_ddb4 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.wrapper_74a9 {
    padding: var(--section-padding);
}

.link-thick-8533 {
    margin: 2rem 0;
}

.purple_39f7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .purple_39f7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .purple_39f7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.logo-short-e40a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.logo-short-e40a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.hover_72e5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.basic_08f2 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.label_out_2f34 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.label_out_2f34.list-yellow-8dd8 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.dirty_383b {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.last-eb97 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.title-5354 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tooltip_c004 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.bright-d7c7 {
    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);
}

.bright-d7c7 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.bright-d7c7 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.west_d114 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.button_brown_49f8 {
    margin: 2rem 0;
}

.content_dirty_11d3 {
    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) {
    .content_dirty_11d3 {
        flex-direction: column;
        gap: 1rem;
    }
}

.content_dirty_11d3:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.content_dirty_11d3::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);
}

.summary-6b49 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.tabs_orange_34dc {
    flex: 1;
}

.title_39d1 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.alert-3c2c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.alert-3c2c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.top-68a8 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.popup_b23c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.liquid-3fed {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .liquid-3fed {
        grid-template-columns: repeat(3, 1fr);
    }
}

.inner_d575 {
    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);
}

.modal-pro-6375 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.fluid-0bd5 {
    flex: 1;
}

.wood-86f8 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.module_373a {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.lite-72ac {
    margin-top: 2rem;
    text-align: center;
}

.tertiary-slow-0ccb {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.tertiary-slow-0ccb strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.info-7ec4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .info-7ec4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dropdown-0629 {
    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);
}

.dropdown-0629:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.dropdown-0629 .wide_4f17 {
    font-size: 2rem;
    flex-shrink: 0;
}

.dropdown-0629 .light_4056 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.dropdown-0629 .article_2622 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.dropdown-0629 .text-c89e {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.pink_3668 {
    padding: var(--section-padding);
}

.progress-6ea5 .modal_9fe0 {
    flex: 1;
}

/* Promo Calendar Section */
.complex-7782 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.filter-copper-2f9b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .filter-copper-2f9b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.avatar-970a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.in-ba22 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.down-e0b2 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cold_e509 {
    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);
}

.badge_b8f7 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.video-16ff {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.card_5e60 {
    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);
}

.card_5e60 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.card_5e60 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.in_4713 {
    padding: var(--section-padding);
}

.label_ae62 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .label_ae62 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.focus-paper-4ed7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.center-616b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.rough-6573 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rough-6573 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.sidebar-6a2a {
    margin-top: 3rem;
}

.sidebar-6a2a .upper_1d6a {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.sidebar-6a2a .hero_full_dee1 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.sidebar-6a2a .pattern_steel_2bff {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.sidebar-6a2a .pattern_steel_2bff li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.sidebar-6a2a .pattern_steel_2bff li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.sidebar-6a2a .pattern_steel_2bff li strong {
    color: var(--warning-color);
}

.section-c4ac {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.section-c4ac strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.smooth-47e9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.search_glass_4d9c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .search_glass_4d9c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dirty_e27e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dirty_e27e .large-a721 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.detail_94fa {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.table-452e {
    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);
}

.table-452e:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.search-ee85 {
    font-size: 2rem;
    flex-shrink: 0;
}

.warm-ac34 {
    flex: 1;
}

.cool-aac1 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.hero_d4d6 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.full_2f07 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.next-34e5 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.lower_cd8e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .lower_cd8e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wide_648e {
    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);
}

.wide_648e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.popup-22cb {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.bottom-eec3 {
    color: var(--text-gray);
    font-size: 1rem;
}

.text_b46e {
    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);
}

.avatar_6ff5 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.avatar_6ff5 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.notification-78fc { 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; }
.paragraph-ad1f, .liquid_6194 { max-width:100%; height:auto; }

.disabled-warm-8d9f, .caption-last-9f3a, .motion-2e08 { white-space:normal; }

.link_9c90,
.liquid-cec1,
.main_blue_eb64,
.info-7ec4,
.pattern-hot-7b33,
.element_tall_8f7e {
  flex-wrap:wrap;
}

[class*="grid"],
.lower_cd8e,
.purple_39f7,
.detail_in_c034 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.accordion-east-256c img,
.liquid-cec1 img,
.solid-edcf img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.widget_4af7, .label-17c3,
.large_109b, .button-red-50f0 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.tag_rough_c5ed { width:100%; overflow-x:auto; }
.tag_rough_c5ed table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.hot_14b8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .hot_14b8 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.row_0a0f {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.search_8f8b,
.dropdown-silver-10a8,
.icon_blue_14da,
.background-d548,
.hovered_4c5e,
.lower_cd8e,
.purple_39f7,
.detail_in_c034,
.medium_98fb,
.dropdown-action-812a,
.hot_14b8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .search_8f8b,
  .dropdown-silver-10a8,
  .icon_blue_14da,
  .background-d548,
  .hovered_4c5e,
  .lower_cd8e,
  .purple_39f7,
  .detail_in_c034,
  .medium_98fb,
  .dropdown-action-812a,
  .hot_14b8 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.tabs-mini-e8e2,
.form_advanced_e813,
.wide_648e,
.iron-f424,
.logo-short-e40a,
.block_7bcc,
.breadcrumb_7fdd,
.row_0a0f {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.down-57fa,
.surface-8ba1,
.alert-5aa7 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.down-57fa > *,
.surface-8ba1 > *,
.alert-5aa7 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 6bc6 */
.ghost-box-q9 {
  padding: 0.5rem;
  font-size: 14px;
  line-height: 1.2;
}
