/* {$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;
}

.tag-3670 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.hero_cd51 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .hero_cd51 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero_cd51 {
        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 */
.medium_4bdd {
    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);
}

.status_a751 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .status_a751 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .bottom_200b {
        grid-column: 1;
    }
    
    .full_c809 {
        grid-column: 2;
    }
    
    .smooth-f682 {
        grid-column: 3;
    }
}

.bottom_200b img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.bottom_200b:hover img {
    transform: scale(1.05);
}

/* Navigation */
.carousel-a993 {
    display: none;
}

@media (min-width: 1024px) {
    .carousel-a993 {
        display: block;
    }
}

/* Grouped Navigation */
.tabs_3601 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.row-260b {
    position: relative;
}

.widget_liquid_24a9 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.row-260b .glass-574b {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.glass-574b {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.complex_6646 {
    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;
}

.complex_6646:hover,
.complex_6646.fn-active-f471 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.banner_left_6f10 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .banner_left_6f10 {
        display: flex;
    }
}

/* Mobile Register Button */
.full_c809 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .full_c809 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.east-dd57 {
    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;
}

.east-dd57::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 */
.smooth-f682 {
    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) {
    .smooth-f682 {
        display: none;
    }
}

.smooth-f682 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.smooth-f682.fn-active-f471 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.smooth-f682.fn-active-f471 span:nth-child(2) {
    opacity: 0;
}

.smooth-f682.fn-active-f471 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.hover_4702 {
    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;
}

.hover_4702.fn-active-f471 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.pink-5f22 {
    overflow: hidden;
}

.pattern-ad10 {
    list-style: none;
    padding: 0.75rem 0;
}

.blue-da63 {
    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;
}

.blue-da63:hover,
.blue-da63.fn-active-f471 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.blue-da63.fast-4a5e {
    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;
}

.blue-da63.fast-4a5e::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 */
.paper-0fe0 {
    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;
}

.description_ff84 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.description_ff84:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.info_7d3b {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.info_7d3b:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.button-gold-1ece {
    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;
}

.button-gold-1ece:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.liquid-171c {
    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;
}

.shadow_simple_44f9 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.shadow_simple_44f9:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.summary-9197 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.summary-9197:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.down_8970 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.down_8970: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);
}

.popup-cold-81b8 {
    font-size: 1em;
    font-weight: 700;
}

.dim_5c8b {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.tag-1f55 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.tag-1f55::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;
}

.logo_full_9988 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .logo_full_9988 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.feature-center-aba0 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.steel_1954 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.liquid_0edc {
    margin-bottom: 2rem;
}

.gold_c94f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .gold_c94f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hovered-da73 {
    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);
}

.message-9a40 {
    font-size: 1.5rem;
}

.background-51c8 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.image-hovered-5739 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.medium_e129 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.medium_e129:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.gold_cd6e {
    text-align: center;
    margin-bottom: 3rem;
}

.overlay_wood_d217 {
    margin-bottom: 1rem;
}

.media_yellow_b81b {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.popup_4047 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .popup_4047 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .popup_4047.advanced-bb6c {
        direction: rtl;
    }
    
    .popup_4047.advanced-bb6c > * {
        direction: ltr;
    }
}

.inner-1f74 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.inner-1f74:first-child {
    margin-top: 0;
}

.status_8c0a {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.surface-f0f3 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.surface-f0f3:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.easy-a6ee {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .easy-a6ee {
        grid-template-columns: repeat(3, 1fr);
    }
}

.caption-0909 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.video-59f3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.advanced-d1d4 {
    list-style: none;
}

.advanced-d1d4 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.advanced-d1d4 li:last-child {
    border-bottom: none;
}

/* Games Features */
.surface_clean_693a {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.column-e659 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.full-812b {
    font-size: 2rem;
    flex-shrink: 0;
}

.hero-1678 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.secondary-lower-7971 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.rough-6ae7 {
    margin: 2rem 0;
}

.red-8f68 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.steel-0bc6 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.tag_hard_3ba8 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.summary-b107 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.input_large_78bb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .input_large_78bb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.panel-1631 {
    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);
}

.panel-1631:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.accordion-ae03 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.lower_c741 {
    font-size: 1.5rem;
}

.disabled_advanced_3d3b {
    color: var(--accent-color);
    margin: 0;
}

.search_8550 {
    list-style: none;
}

.search_8550 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.search_8550 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.banner_f39e {
    margin: 2rem 0;
}

.highlight_d017 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.hidden-complex-1506 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .hidden-complex-1506 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dynamic_73a0 {
    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);
}

.text_2e67 {
    font-size: 1.25rem;
}

.shadow-lower-088b {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.pink_98f9,
.secondary_smooth_1be6 {
    text-align: center;
    margin: 2rem 0;
}

.sidebar_9129,
.widget_19c9 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.tooltip-09ab {
    margin: 2rem 0;
    text-align: center;
}

.over-9db6 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.over-9db6::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;
}

.thumbnail-0457 {
    position: relative;
    z-index: 1;
}

.basic-b748 {
    margin-bottom: 1rem;
}

.accent_copper_edb5 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.media_fixed_1213 {
    margin-bottom: 3rem;
}

.background_8f50 {
    margin-top: 3rem;
}

.label-490c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .label-490c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.label-490c .hovered-da73 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.lower-0d52 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.west-04f3 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.module_gas_eaf9 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.outer_6688 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .outer_6688 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .outer_6688 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.warm_0035 {
    margin-bottom: 1rem;
}

.modal_8ac3 img {
    margin-bottom: 1rem;
}

.button-f524 {
    color: var(--text-gray);
    line-height: 1.6;
}

.next-a9e0 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.layout-right-0883 {
    list-style: none;
}

.layout-right-0883 li {
    margin-bottom: 0.5rem;
}

.layout-right-0883 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.layout-right-0883 a:hover {
    color: var(--accent-color);
}

.mask_stale_6b29 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.disabled_8243 {
    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);
}

.disabled_8243:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.image-c115 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.image-c115 p {
    margin-bottom: 0.25rem;
}

.outer_4008 {
    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) {
    .outer_4008 {
        flex-direction: row;
    }
}

.modal-old-eb3c {
    text-align: center;
}

@media (min-width: 768px) {
    .modal-old-eb3c {
        text-align: left;
    }
}

.modal-old-eb3c p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.under_02c7 {
    font-size: 0.75rem !important;
}

.main-6544 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.middle_e305 {
    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);
    }
}

.pattern-active-6e1d {
    animation: fadeInUp 0.6s ease-out;
}

.gallery-steel-4155 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.short_2220 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .short_2220 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.description_5491 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .description_5491 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.rough-f2cc {
    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);
}

.rough-f2cc .full-812b {
    font-size: 1.25rem;
}

.rough-f2cc .status_7fea {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.footer_3650 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .footer_3650 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.heading-fresh-631b {
    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);
}

.heading-fresh-631b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.full_8601 {
    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);
}

.highlight_pressed_4016 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.info_up_dde9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.backdrop-cool-d224 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.top-9dfb {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.top-9dfb .hero-1678 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.top-9dfb .secondary-lower-7971 {
    color: var(--text-gray);
    line-height: 1.6;
}

.prev-52c7 {
    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);
}

.large_dd9c {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.large_dd9c img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.large_dd9c img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.info_paper_d24a {
    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);
}

.grid-e920 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.iron-69c7 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.iron-69c7 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.iron-69c7 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);
}

.iron-69c7 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.iron-69c7 input::placeholder {
    color: var(--text-muted);
}

.rough_e3f9 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.hover-fa4d {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.hover-fa4d input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.texture_glass_2e9e {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.texture_glass_2e9e:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.hidden-complex-1506 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hidden-complex-1506 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dynamic_73a0 {
    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);
}

.dynamic_73a0 .text_2e67 {
    font-size: 1.25rem;
}

.dynamic_73a0 .shadow-lower-088b {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.secondary-dark-3884 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.item-c90b {
    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);
}

.item-c90b .full-812b {
    font-size: 2rem;
    flex-shrink: 0;
}

.item-c90b .hero-1678 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.item-c90b .secondary-lower-7971 {
    color: var(--text-gray);
    line-height: 1.6;
}

.message-153b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.liquid_22c5 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.liquid_22c5 .dim_a7f2 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.liquid_22c5 .light-3971 {
    color: var(--text-gray);
    line-height: 1.6;
}

.over_e0de {
    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);
}

.secondary-3b79 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .secondary-3b79 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.glass-6023 {
    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);
}

.glass-6023:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.inner-4604 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.link-glass-b529 {
    flex: 1;
}

.modal-0425 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.info-fixed-d5a9 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pressed_f0a0 {
    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);
}

.pressed_f0a0:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.top-188b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .top-188b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.badge_4b17 {
    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);
}

.badge_4b17:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.row-3b33 {
    font-size: 2rem;
    flex-shrink: 0;
}

.media_simple_8dd3 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.column-291e {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.banner_cool_8556 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.table_complex_93b7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.title_59b2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.module_e473 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.module_e473 .static_71a7 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.module_e473 .dropdown-e096 {
    color: var(--text-gray);
    line-height: 1.6;
}

.element_a2be {
    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);
}

.current-80f9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.steel-631c {
    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);
}

.steel-631c .full-812b {
    font-size: 2rem;
    flex-shrink: 0;
}

.steel-631c .hero-1678 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.steel-631c .secondary-lower-7971 {
    color: var(--text-gray);
    line-height: 1.6;
}

.preview_cc55 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .preview_cc55 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gradient-pressed-8fde {
    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);
}

.gradient-pressed-8fde:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.icon-7d25 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .icon-7d25 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.center-57fb {
    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);
}

.center-57fb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.row_full_da0f {
    font-size: 2rem;
    flex-shrink: 0;
}

.current_051f {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.steel-0bc6 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.wrapper_1e0d {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.summary-a490 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.photo-8f74 {
    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);
}

.photo-8f74:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.alert-red-9b44 {
    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);
}

.west-257b {
    flex: 1;
}

.solid-1fda {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.caption-south-82c7 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.element-f9d9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.banner_center_7216 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.component-wood-01f7 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.component-wood-01f7 .dim_a7f2 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.component-wood-01f7 .light-3971 {
    color: var(--text-gray);
    line-height: 1.6;
}

.secondary_smooth_1be6 {
    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);
}

.container_yellow_cca3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .container_yellow_cca3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.pink_5a8d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pink_5a8d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.mask-wide-bfce {
    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);
}

.mask-wide-bfce:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.dark_a1d6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tiny_ccff {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.caption_old_44fe {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.icon_fluid_8753 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.secondary_1b48 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.layout_9521 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.preview_right_ae72 {
    font-size: 2rem;
    flex-shrink: 0;
}

.basic_8a5f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.plasma-e650 {
    color: var(--text-gray);
    line-height: 1.6;
}

.current-80f9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.steel-631c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.steel-631c .hero-1678 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.steel-631c .secondary-lower-7971 {
    color: var(--text-gray);
    line-height: 1.6;
}

.frame-1bf4 {
    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);
}

.gold-e4ce {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .gold-e4ce {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gold-e4ce {
        grid-template-columns: repeat(4, 1fr);
    }
}

.layout-blue-8c32 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.layout-blue-8c32:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.small-b2a1 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.hot-bfcc {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.message-next-3e4d {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.hidden_motion_6cc9 {
    padding: 1.5rem;
}

.disabled-f3c9 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hidden_down_a80d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hidden_down_a80d 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;
}

.hidden_down_a80d li:last-child {
    border-bottom: none;
}

.hidden_down_a80d li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.secondary_b428 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .secondary_b428 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.up_f3ad {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.up_f3ad:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.nav_simple_a93a {
    font-size: 2rem;
    flex-shrink: 0;
}

.footer_huge_67eb {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.header_a879 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.media_cold_b817 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.row_911f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.picture-7d30 {
    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);
}

.chip-stale-fe74 {
    font-size: 2rem;
    flex-shrink: 0;
}

.out-158b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.shadow-dark-f2f6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.menu-purple-33e1 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.simple_09c4 {
    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);
}

.dark_2be1 {
    text-align: center;
}

.stone_3b38 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.thumbnail_basic_24b2 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.row_1980 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.carousel-down-8123 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.carousel-down-8123 .hero-1678 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.carousel-down-8123 .secondary-lower-7971 {
    color: var(--text-gray);
    line-height: 1.6;
}

.sort_clean_9f2e {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .sort_clean_9f2e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sort_clean_9f2e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.status_upper_e504 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.status_upper_e504:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.message_5b4e {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.caption_red_1684 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.hero-1678 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.box_lower_dade {
    padding: 1.5rem;
}

.secondary-lower-7971 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hovered-31d7 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hovered-31d7 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;
}

.hovered-31d7 li:last-child {
    border-bottom: none;
}

.hovered-31d7 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.liquid_59b0 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.active-8a38 {
    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);
}

.active-8a38:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.next_ffdf {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.notice-dynamic-c0de {
    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);
}

.full_8601 {
    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;
}

.highlight_pressed_4016 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.info_up_dde9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.summary_left_2c50 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.frame-mini-53eb {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.selected-6c8f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.focused-9452 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.frame_upper_1d97 {
    display: flex;
    gap: 1rem;
}

.frame_upper_1d97 .solid_3900 {
    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;
}

.avatar-red-3ccd {
    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);
}

.left-bab2 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.background_old_8cbc {
    list-style: none;
    padding: 0;
    margin: 0;
}

.background_old_8cbc 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;
}

.background_old_8cbc li:last-child {
    border-bottom: none;
}

.background_old_8cbc li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.carousel-d3c6 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .carousel-d3c6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .carousel-d3c6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.avatar_c704 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.avatar_c704:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gallery-over-eb74 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.header-05c3 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.static_71a7 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.text_silver_dcc0 {
    font-size: 1rem;
}

.row-current-6565 {
    padding: 1.5rem;
}

.dropdown-e096 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.hidden-solid-256d {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.hidden-solid-256d .dark_2be1 {
    text-align: center;
}

.hidden-solid-256d .thumbnail_basic_24b2 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.hidden-solid-256d .button-cool-141b {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.layout_f353 {
    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);
}

.layout_f353:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.outline-advanced-a939 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .outline-advanced-a939 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.overlay_right_5612 {
    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);
}

.overlay_right_5612:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.orange-7d30 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.iron-436f {
    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);
}

.item_pressed_8474 {
    font-size: 2rem;
    flex-shrink: 0;
}

.out-cc60 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.pattern-up-928d {
    color: var(--text-gray);
    line-height: 1.6;
}

.notification-fast-02a3 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.primary_1290 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.slider_d2c5 {
    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);
}

.pattern-small-ca14 {
    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;
}

.pattern-small-ca14.out-a532 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.pattern-small-ca14.highlight_left_77c0 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.pattern-small-ca14.iron-b018 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.pattern-small-ca14.badge_hot_8b28 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.pattern-small-ca14.nav-outer-eec3 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.large_7086 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.title_paper_c038 {
    color: var(--text-gray);
    line-height: 1.6;
}

.dark-fbca {
    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);
}

.hover-blue-dae0 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.message-153b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.message-153b 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;
}

.message-153b li:last-child {
    border-bottom: none;
}

.message-153b li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.tabs_c9dc {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .tabs_c9dc {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tabs_c9dc {
        grid-template-columns: repeat(3, 1fr);
    }
}

.small_6548 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.small_6548:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.small_6548.gallery_397e {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .small_6548.gallery_397e {
        grid-column: span 3;
    }
}

.border-f1da {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.small_6548.gallery_397e .border-f1da {
    background: rgba(6, 182, 212, 0.1);
}

.purple-1ef1 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.iron-3f47 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.small_6548.gallery_397e .iron-3f47 {
    color: var(--info-color);
}

.sort_5849 {
    padding: 1.5rem;
    text-align: center;
}

.info_8490 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.small_6548.gallery_397e .info_8490 {
    color: var(--info-color);
}

.banner-out-07aa {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.hovered_650a {
    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 */
.pagination-last-1ba9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .pagination-last-1ba9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.surface_out_37a6 {
    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);
}

.surface_out_37a6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.outline-74d0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.item-c90b {
    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);
}

.text_2e67 {
    font-size: 2rem;
    flex-shrink: 0;
}

.preview_3c59 {
    flex: 1;
}

.highlight_d017 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.current_d61d {
    color: var(--text-gray);
    line-height: 1.6;
}

.active-30fc {
    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);
}

.advanced-f826 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.frame-large-f4f3 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.middle_e305 {
    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);
}

.row_motion_e137 {
  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);
}

.row_motion_e137 .dark_2be1 {
    text-align: center;
}

.row_motion_e137 .stone_3b38 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.row_motion_e137 .thumbnail_basic_24b2 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.tooltip-8f53 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.short_6760 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hidden-advanced-7be4 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.image_north_4b42 {
    color: var(--text-gray);
    line-height: 1.6;
}

.stale-7295 {
    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);
}

.dropdown_da4f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.search_gold_3eee {
    color: var(--text-gray);
    line-height: 1.6;
}

.alert_9b3a {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .alert_9b3a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .alert_9b3a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.slow-2e2b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.slow-2e2b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.element_b69e {
    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);
}

.paragraph-focused-5d2b {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.sidebar_fluid_edea {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.bottom_a898 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bottom_a898.column_green_1d30 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.bottom_a898.center_d713 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.bottom_a898.background-clean-4125 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.new_31e2 {
    padding: 1.5rem;
    text-align: center;
}

.grid_2ab2 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.black_2dde {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.black_2dde .solid_d5df {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.fast_a46b {
    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);
}

.fast_a46b:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.dim_6093 {
  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);
}

.mini_a90b {
    text-align: center;
}

.mini_a90b .stone_3b38 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.mini_a90b .thumbnail_basic_24b2 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.carousel_4174 { text-align: center; }
.detail_down_69b7 { text-align: left; }
.focus_middle_a0a5 { text-align: right; }

.popup-aecc { margin-bottom: 0; }
.hidden_next_13e5 { margin-bottom: 0.5rem; }
.icon-north-5f83 { margin-bottom: 1rem; }
.tall-a38b { margin-bottom: 1.5rem; }
.element_2d9b { margin-bottom: 2rem; }

.paragraph_2759 { margin-top: 0; }
.hero-full-6cd5 { margin-top: 0.5rem; }
.glass_6c3c { margin-top: 1rem; }
.hover-d07c { margin-top: 1.5rem; }
.highlight_gas_0dca { margin-top: 2rem; }

.fn-hidden-f471 { display: none; }
.fn-visible-f471 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .tag-1f55 {
        padding: 6rem 0 3rem;
    }
    
    .logo_full_9988 {
        text-align: center;
    }
    
    .popup_4047 {
        text-align: center;
    }
    
    .gold_c94f {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .medium_4bdd,
    .hover_4702,
    .over-9db6,
    .module_gas_eaf9 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .tag-1f55 {
        background: none;
    }
}

/* Providers Section */
.table-current-2c66 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.outer_b5f0 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .outer_b5f0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .outer_b5f0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.info-left-1f98 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.info-left-1f98:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.lite_d68c {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.red-07f6 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.text-2a81 {
    list-style: none;
    padding: 0;
}

.text-2a81 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.text-2a81 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.tertiary-a3d6 {
    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);
}

.tertiary-a3d6 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.info_895c {
    padding: var(--section-padding);
}

.narrow_4bb0 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .narrow_4bb0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.header-fe86 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.header-fe86:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.highlight_short_0eba {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.container-286f {
    display: flex;
    flex-direction: column;
}

.paragraph_motion_1bac {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.upper_83cf {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.chip_0686 {
    color: var(--accent-color);
}

.image-wide-95f5 {
    font-size: 1.25rem;
}

.highlight-brown-855e {
    margin-bottom: 1rem;
}

.highlight-brown-855e p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.filter_silver_6704 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.hero-narrow-ec47 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.dark_2be1 {
    text-align: center;
}

.stone_3b38 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.thumbnail_basic_24b2 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.secondary_medium_3a58 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.light_1c64 {
    margin: 2rem 0;
}

.outer_e486 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.outer_e486 .full-812b {
    font-size: 2rem;
    flex-shrink: 0;
}

.warm-682a {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hot-8fe4 {
    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;
}

.hot-8fe4:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.card_ab20 {
    font-size: 2rem;
}

.notification-down-005e {
    display: flex;
    flex-direction: column;
}

.content_7b7b {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.card_bronze_113a {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.alert-a910 {
    padding: var(--section-padding);
}

.rough-6597 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .rough-6597 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .rough-6597 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.brown_36b4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
    transition: var(--transition-normal);
}

.brown_36b4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.brown_36b4 .stone_3b38 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.brown_36b4 .thumbnail_basic_24b2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.brown_36b4 .message-smooth-cb54 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.paragraph_top_d9ce {
    margin-top: 4rem;
}

.in-3cce {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.selected-f8c9 {
    overflow-x: auto;
}

.surface-06e2 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.surface-06e2 thead {
    background: var(--accent-color);
}

.surface-06e2 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.surface-06e2 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.surface-06e2 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.surface-06e2 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.frame_cc03 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.filter_over_3e0f {
    max-width: 900px;
    margin: 0 auto;
}

.mask_f321 {
    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);
}

.mask_f321:hover {
    border-color: var(--accent-color);
}

.badge_over_ebd7 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.badge_over_ebd7 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.tag_narrow_be2a {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.mask_f321.fn-active-f471 .tag_narrow_be2a {
    transform: rotate(45deg);
}

.disabled-under-0232 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.mask_f321.fn-active-f471 .disabled-under-0232 {
    max-height: 1000px;
}

.disabled-under-0232 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.highlight-down-3d51 {
    padding: var(--section-padding);
}

.large_dd9c {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.dropdown-upper-98a2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.photo_1b6b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .photo_1b6b {
        grid-template-columns: repeat(2, 1fr);
    }
}

.old_be0e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.breadcrumb_9344 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.link-west-af07 {
    font-size: 2rem;
}

.button_5897 {
    color: var(--text-white);
    margin: 0;
}

.bright_8008 {
    list-style: none;
    padding: 0;
}

.bright_8008 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bright_8008 li:last-child {
    border-bottom: none;
}

.silver_f17a {
    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);
}

.silver_f17a p {
    color: var(--success-color);
    margin: 0;
}

.section_b160 {
    margin-top: 3rem;
}

.left-bab2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.box_hovered_1197 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .box_hovered_1197 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.wood_9e27 {
    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);
}

.search-right-373e {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.wood_9e27 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.widget-bc0d {
    padding: var(--section-padding);
}

.menu_clean_9633 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .menu_clean_9633 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fixed_8ec0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.fixed_8ec0:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.message-stone-a228 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.action-c7a3 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.form_12a6 {
    flex: 1;
}

.column-gas-9f4d {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.carousel-9c0b {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.badge_left_d809 {
    color: var(--text-gray);
    line-height: 1.6;
}

.dark-b9bc {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-b9bc:last-child {
    border-bottom: none;
}

/* Comparison Section */
.backdrop-702b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.picture-action-511b {
    padding: var(--section-padding);
}

.tabs_static_5a92 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.black-e819 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .black-e819 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.inner_9fcc {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.large_18ac, .outer-f2ac, .header_outer_efea {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.header_outer_efea {
    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 */
.mask-inner-f416 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.active-0c2c {
    margin: 2rem 0;
}

.disabled-fbfc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.progress_7617 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.west_ec8b {
    list-style: none;
    padding: 0;
}

.west_ec8b 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;
}

.west_ec8b li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.west_ec8b li:last-child {
    border-bottom: none;
}

.info_tiny_1d3b {
    text-align: center;
    margin-top: 2rem;
}

.yellow_217c {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.column_static_1a3a {
    padding: var(--section-padding);
}

.down_df85 {
    margin: 2rem 0;
}

.tabs-c9b6 {
    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) {
    .tabs-c9b6 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.tabs-c9b6:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.info-d0eb {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.bottom-e304 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.component_8a7f {
    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;
}

.nav-268a {
    flex: 1;
}

.tooltip-easy-a263 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.paragraph_bronze_3616 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.slider-8139 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.banner_wood_4d79 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .banner_wood_4d79 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.gallery-aac6 {
    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);
}

.gallery-aac6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.gallery-aac6 .stone_3b38 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.gallery-aac6 .thumbnail_basic_24b2 {
    color: var(--text-gray);
    font-size: 1rem;
}

.sidebar-complex-ec7b {
    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);
}

.content-center-a506 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.content-center-a506 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.glass_6e1c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .glass_6e1c {
        grid-template-columns: 1fr 1fr;
    }
}

.secondary-medium-3658 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.menu-4208 {
    margin-bottom: 1.5rem;
}

.menu-4208 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.menu-4208 input,
.menu-4208 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;
}

.menu-4208 input:focus,
.menu-4208 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.footer_aab1 {
    width: 100%;
    margin-top: 1rem;
}

.hover_stone_8981 {
    display: flex;
    align-items: center;
}

.static-eb89 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.caption-small-991c {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.caption_prev_9049 {
    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;
}

.overlay_medium_370e {
    color: var(--text-gray);
}

.secondary-pink-4182 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.mask-right-b789 {
    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);
}

.mask-right-b789 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.sidebar_ef8a {
    margin-top: 3rem;
}

.dynamic_d9ed {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.caption_c08d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.soft_1602 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.icon-2c68 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-2c68:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.preview_top_7143 {
    padding: var(--section-padding);
}

.warm-4811 {
    margin: 2rem 0;
}

.status_fast_a9fd {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hidden-8981 {
    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;
}

.hidden-8981:hover, .hidden-8981.fn-active-f471 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.footer-tiny-0618 {
    display: none;
}

.footer-tiny-0618.fn-active-f471 {
    display: block;
}

.pink-d3be {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.progress-0f00 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.media-5b16 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.media-5b16 ul {
    list-style: none;
    padding: 0;
}

.media-5b16 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.media-5b16 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.tooltip-c702 {
    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 */
.hot-9f95 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.lite-4f1b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.image-top-1016 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.bright_8f6e {
    color: var(--accent-color);
    margin: 0;
}

.layout_4aab {
    display: flex;
    gap: 1.5rem;
}

.soft-f987 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.notice_warm_8ecd {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.cool-920a {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.cool-920a.secondary_right_4d5e {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.cool-920a.menu_ace6 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.cool-920a.block-top-f885 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.chip_d2d9 {
    margin-top: 2rem;
}

.caption_new_ecbb {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.slow-44c2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .slow-44c2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accordion_bronze_b817 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.highlight_01eb {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.container_bright_7c51 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.carousel_2975 {
    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 */
.module-plasma-51cd {
    padding: var(--section-padding);
}

.shadow-center-41b5 {
    margin: 2rem 0;
}

.red-ac0a {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.primary-5d4f {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.clean-58e6 {
    list-style: none;
    padding: 0;
}

.clean-58e6 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;
}

.clean-58e6 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.clean-58e6 li:last-child {
    border-bottom: none;
}

.cool_3628 {
    margin: 2rem 0;
}

.notification-60a3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.row-1cee {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .row-1cee {
        grid-template-columns: repeat(2, 1fr);
    }
}

.bright-f0ce {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.banner-af92 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hard_b3e9 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.fluid_8478 {
    margin-top: 2rem;
}

.modal-0425 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.steel-4c92 {
    list-style: none;
    padding: 0;
}

.thumbnail-f853 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.thumbnail-f853 a {
    color: var(--accent-color);
    text-decoration: none;
}

.thumbnail-f853 a:hover {
    text-decoration: underline;
}

.pattern-action-610f {
    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 */
.border-c932 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pink-b1ed {
    margin: 2rem 0;
}

.photo_586d {
    margin-bottom: 3rem;
}

.photo_586d .progress_7617 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.paper_45e3 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.bottom-52c4 {
    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);
}

.bottom-52c4:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.brown_a372 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .brown_a372 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tooltip-tall-86c6 {
    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 */
.frame-2df7 {
    padding: var(--section-padding);
}

.popup-short-7e13 {
    margin: 2rem 0;
}

.pink-e92c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.bronze_fdfe {
    overflow-x: auto;
    margin: 2rem 0;
}

.dropdown-deae {
    background: rgba(6, 182, 212, 0.1) !important;
}

.notification_c938 {
    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;
}

.tag-0b23 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.sidebar_4e37 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .sidebar_4e37 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.element-warm-292f {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.element-warm-292f .full-812b {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.element-warm-292f .hero-1678 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tiny_19c1 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.main_05a8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.link_stone_249d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .link_stone_249d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.in-36c6 {
    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;
}

.in-36c6:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.cold-887b {
    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);
}

.filter_e4dd {
    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;
}

.chip_46af {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.filter-84f4 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.tiny-5aa7 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.box-lower-b9e8 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.liquid-bbe3 {
    color: var(--text-white);
    font-weight: 600;
}

.card_upper_abf4 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.brown-6920 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.brown-6920 .solid_3900 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.old_cfbd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .old_cfbd {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cold_41f5 {
    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);
}

.cold_41f5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.cold_41f5 .stone_3b38 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.cold_41f5 .thumbnail_basic_24b2 {
    color: var(--text-gray);
    font-size: 1rem;
}

.middle_6bcd {
    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);
}

.row_over_7f89 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.row_over_7f89 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.secondary_1b48 {
    margin: 2rem 0;
}

.layout_9521 {
    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);
}

.layout_9521:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.preview_right_ae72 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.thumbnail-plasma-184d {
    flex: 1;
}

.basic_8a5f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.plasma-e650 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.current-80f9 {
    margin: 2rem 0;
}

.steel-631c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.steel-631c .hero-1678 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.steel-631c .secondary-lower-7971 {
    color: var(--text-gray);
    margin: 0;
}

.frame-1bf4 {
    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);
}

.frame-1bf4 .sidebar_9129 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.tiny_19c1 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.alert-red-9b44 {
    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;
}

.west-257b {
    flex: 1;
}

.caption-south-82c7 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.element-f9d9 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.full_8601 {
    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;
}

.north-e781 {
    flex: 1;
}

.highlight_pressed_4016 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.info_up_dde9 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.selected-6c8f {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.focused-9452 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.frame_upper_1d97 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.frame_upper_1d97 .solid_3900 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.avatar-red-3ccd {
    margin-top: 2rem;
}

.avatar-red-3ccd .left-bab2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.notification_paper_ed79 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.simple_09c4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .simple_09c4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.simple_09c4 .dark_2be1 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.row_1980 {
    margin: 2rem 0;
}

.carousel-down-8123 {
    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 */
.surface_smooth_992f {
    padding: var(--section-padding);
}

.box_lower_dade {
    margin-top: 1rem;
}

.hovered-31d7 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.hovered-31d7 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.hovered-31d7 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.footer_hot_cd63 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.menu-next-e5d0 {
    margin: 2rem 0;
}

.hard-6372 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.text_91d1 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-5c85 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.orange-0c8a {
    margin: 2rem 0;
}

.label-fresh-9390 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.label-fresh-9390 .progress_7617 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.cool_a1c1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .cool_a1c1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tooltip_6906 {
    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);
}

.focus-f574 {
    color: var(--text-white);
    font-weight: 600;
}

.black-531f {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.status_c043 {
    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);
}

.status_c043 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.highlight-liquid-8f09 {
    padding: var(--section-padding);
}

.bronze_28be {
    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;
}

.bronze_28be:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.tiny-656f {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tiny-656f .search-right-373e {
    font-size: 2rem;
    flex-shrink: 0;
}

.tiny-656f .banner_pro_3bb3 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.description_hot_906b {
    flex: 1;
}

.outline-ce74 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.easy-f6cf {
    list-style: none;
    padding: 0;
    margin: 0;
}

.easy-f6cf li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.easy-f6cf li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.focus-in-3675 {
    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);
}

.focus-in-3675 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.focus-in-3675 strong {
    color: var(--warning-color);
}

/* Slots Section */
.media-c4f9 {
    padding: var(--section-padding);
}

.table_complex_93b7 {
    margin: 2rem 0;
}

/* Table Games Section */
.primary-ca0f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.title_59b2 {
    margin: 2rem 0;
}

.module_e473 {
    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);
}

.module_e473:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.module_e473 .static_71a7 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.module_e473 .dropdown-e096 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.element_a2be {
    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);
}

.element_a2be .sidebar_9129 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.hard_a05d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.thumbnail-4312 {
    margin: 2rem 0;
}

.picture-191b {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.iron-a6c5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.liquid_71d8 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.active_5e49 {
    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);
}

.active_5e49:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.active_5e49.fn-active-f471 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.popup_c96b {
    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);
}

.thumbnail-blue-0a54 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.thumbnail-blue-0a54 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.nav_dirty_58fd {
    padding: var(--section-padding);
}

.chip-lower-6f65 {
    margin: 2rem 0;
}

.south-04e0 {
    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);
}

.south-04e0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .south-04e0 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.image-ae2c {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.sort-0a79 {
    flex: 1;
}

.nav-8644 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.wide_1a5e {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.box-28a7 {
    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;
}

.popup_soft_b26e {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.overlay_fluid_b7e9 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.description-middle-d52e {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.caption_7f95 {
    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;
}

.caption_7f95:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.fluid-33c9 {
    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);
}

.tertiary_dirty_40cf {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.tertiary_dirty_40cf strong {
    color: var(--accent-color);
}

/* New Games Section */
.dynamic-2f02 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.row-bc32 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .row-bc32 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .row-bc32 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.summary_d61a {
    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;
}

.summary_d61a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.panel_587d {
    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;
}

.tooltip-medium-8310 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.column-59f7 {
    font-size: 2rem;
}

.feature_small_8b7e {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.notice-mini-8b4f {
    flex: 1;
}

.lite_c3bc {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.popup_2719 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.table_small_c20b {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.medium_8af1 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.texture_left_4517 {
    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;
}

.primary-selected-f9c9 {
    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;
}

.primary-selected-f9c9:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.hero_3d0d {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.glass-bbf7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hover_over_3123 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hover_over_3123 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.video-gold-7879 {
    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);
}

.paragraph-full-ec61 {
    color: var(--text-white);
    font-weight: 600;
}

.thick_54c9 {
    color: var(--accent-color);
    font-weight: 600;
}

.bottom_fba4 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.bottom_fba4 strong {
    color: var(--accent-color);
}

/* Security Section */
.photo-motion-8a85 {
    padding: var(--section-padding);
}

/* Benefits Section */
.shadow_3989 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.dropdown-yellow-46a4 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.notification_6f85 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.content_3e32 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.middle_a27b {
    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) {
    .middle_a27b {
        flex-direction: column;
        gap: 1rem;
    }
}

.middle_a27b:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.middle_a27b .full_8601 {
    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;
}

.middle_a27b .north-e781 {
    flex: 1;
}

.middle_a27b .highlight_pressed_4016 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.middle_a27b .info_up_dde9 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.nav-fae5 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.nav-fae5 .highlight_d017 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.nav-fae5 .secondary-dark-3884 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-fae5 .secondary-dark-3884 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.nav-fae5 .secondary-dark-3884 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.backdrop-mini-5fd7 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.description-plasma-22b5 {
    padding: var(--section-padding);
}

.lower-65c5 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .lower-65c5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hover-plasma-f037 {
    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);
}

.hover-plasma-f037:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.hover-plasma-f037 .hard-39f8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hover-plasma-f037 .nav-dynamic-1078 {
    flex: 1;
}

.hover-plasma-f037 .dim_a7f2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hover-plasma-f037 .gallery-green-a544 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.tooltip-00d1 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tooltip-00d1 .texture-over-aebb {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tooltip-00d1 .narrow_28e3 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.tooltip-00d1 .narrow_28e3 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);
}

.tooltip-00d1 .narrow_28e3 li:last-child {
    border-bottom: none;
}

.tooltip-00d1 .narrow_28e3 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;
}

.tooltip-00d1 .narrow_28e3 li strong {
    color: var(--text-white);
}

.solid-03f3 {
    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);
}

.solid-03f3 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.solid-03f3 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.last_25d7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.in_3816 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .in_3816 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.caption-9052 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.caption-9052:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.block-white-1c1f {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hard_b53c {
    font-size: 2rem;
}

.component-e366 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.card_stale_835f {
    flex: 1;
}

.menu-clean-26e4 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-clean-26e4 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.menu-clean-26e4 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.description_c3f4 {
    margin-top: 3rem;
}

.red-ac0a {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.primary-5d4f {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.clean-58e6 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.clean-58e6 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.clean-58e6 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.clean-58e6 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.table-5c59 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.complex_5914 {
    margin: 2rem 0;
}

.lite_1bbf {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.lite_1bbf .progress_7617 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.slow_bd3d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .slow_bd3d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.last_3bfa {
    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);
}

.last_3bfa:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.focus_f120 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.title_5ba2 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.card_hard_92c9 {
    padding: var(--section-padding);
}

.table_advanced_ff4b {
    margin: 2rem 0;
}

.outer-0043 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .outer-0043 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .outer-0043 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dropdown_north_5c4a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.dropdown_north_5c4a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.current-2d5e {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.white-97a0 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.box-2bed {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.box-2bed.paragraph-fb6f {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.tabs_aee6 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.fast_1d27 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.new-57ff {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav_945e {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.glass_8507 {
    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);
}

.glass_8507 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.glass_8507 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.tag-hard-d7dc {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.logo_8d53 {
    margin: 2rem 0;
}

.description-left-d5b4 {
    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) {
    .description-left-d5b4 {
        flex-direction: column;
        gap: 1rem;
    }
}

.description-left-d5b4:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.description-left-d5b4::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);
}

.tooltip-copper-0129 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.background-a8bd {
    flex: 1;
}

.description-7440 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.complex_14c1 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.complex_14c1 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.texture_right_a1f8 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.light-28c4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.detail-top-5f79 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .detail-top-5f79 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.image-1953 {
    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);
}

.hidden-tall-01a1 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.row_wide_be21 {
    flex: 1;
}

.tooltip-cold-7780 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.modal-pink-73e3 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.bright-1105 {
    margin-top: 2rem;
    text-align: center;
}

.image_f048 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.image_f048 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.outline-advanced-a939 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .outline-advanced-a939 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.overlay_right_5612 {
    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);
}

.overlay_right_5612:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.overlay_right_5612 .nav_simple_a93a {
    font-size: 2rem;
    flex-shrink: 0;
}

.overlay_right_5612 .footer_huge_67eb {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.overlay_right_5612 .header_a879 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.overlay_right_5612 .media_cold_b817 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.outline_red_c754 {
    padding: var(--section-padding);
}

.iron-436f .down-b383 {
    flex: 1;
}

/* Promo Calendar Section */
.list_rough_a355 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.focused-f98d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .focused-f98d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.upper_13e1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.bronze-7110 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.banner-12f9 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wood-8a43 {
    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);
}

.stone-fb52 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.column-09bf {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.tabs-south-ec86 {
    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);
}

.tabs-south-ec86 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.tabs-south-ec86 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.accordion_8c60 {
    padding: var(--section-padding);
}

.carousel-8a74 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .carousel-8a74 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.surface_first_e2ce {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hover-2b41 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hero_a148 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero_a148 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.disabled-old-3a05 {
    margin-top: 3rem;
}

.disabled-old-3a05 .red-ac0a {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.disabled-old-3a05 .primary-5d4f {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.disabled-old-3a05 .clean-58e6 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.disabled-old-3a05 .clean-58e6 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.disabled-old-3a05 .clean-58e6 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.disabled-old-3a05 .clean-58e6 li strong {
    color: var(--warning-color);
}

.info_bfe1 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.info_bfe1 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.hover_clean_9d6d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.input_9b3c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .input_9b3c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bronze_466f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.bronze_466f .progress_7617 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.wrapper_pressed_03a3 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form_b469 {
    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);
}

.form_b469:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.middle-07e8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.mask-5c3b {
    flex: 1;
}

.hero_action_6623 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.outline-2600 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.dark-14dc {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.copper-ea35 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.paragraph-large-8343 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .paragraph-large-8343 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.primary-white-0d40 {
    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);
}

.primary-white-0d40:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.summary-orange-1eba {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.cold-ade0 {
    color: var(--text-gray);
    font-size: 1rem;
}

.content-center-a506 {
    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);
}

.action_a62e {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.action_a62e strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.hero_cd51 { 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; }
.medium_e129, .surface-f0f3 { max-width:100%; height:auto; }

.paper-0fe0, .button-gold-1ece, .liquid-171c { white-space:normal; }

.logo_full_9988,
.popup_4047,
.pagination-last-1ba9,
.outline-advanced-a939,
.current-80f9,
.alert_9b3a {
  flex-wrap:wrap;
}

[class*="grid"],
.paragraph-large-8343,
.outer-0043,
.label-490c {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.tag-1f55 img,
.popup_4047 img,
.image-hovered-5739 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.feature-center-aba0, .steel_1954,
.overlay_wood_d217, .media_yellow_b81b {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.selected-f8c9 { width:100%; overflow-x:auto; }
.selected-f8c9 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.outer_b5f0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .outer_b5f0 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.info-left-1f98 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.rough-6597,
.label-orange-77ca,
.component_bottom_6afb,
.bottom-e8b7,
.banner_wood_4d79,
.paragraph-large-8343,
.outer-0043,
.label-490c,
.dim_6093,
.chip-lower-6f65,
.outer_b5f0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .rough-6597,
  .label-orange-77ca,
  .component_bottom_6afb,
  .bottom-e8b7,
  .banner_wood_4d79,
  .paragraph-large-8343,
  .outer-0043,
  .label-490c,
  .dim_6093,
  .chip-lower-6f65,
  .outer_b5f0 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.brown_36b4,
.gallery-aac6,
.primary-white-0d40,
.hovered-da73,
.dropdown_north_5c4a,
.mini_a90b,
.south-04e0,
.info-left-1f98 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.icon_west_3593,
.dim-8afb,
.paragraph_medium_110e {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.icon_west_3593 > *,
.dim-8afb > *,
.paragraph_medium_110e > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 8d12 */
.shadow-element-v7 {
  padding: 0.4rem;
  font-size: 12px;
  line-height: 1.0;
}
