/* {$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;
}

.chip_old_0872 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.pro-de50 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .pro-de50 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .pro-de50 {
        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 */
.grid-middle-7666 {
    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);
}

.feature-a156 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .feature-a156 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .bronze_c238 {
        grid-column: 1;
    }
    
    .rough_5be3 {
        grid-column: 2;
    }
    
    .pressed_ae24 {
        grid-column: 3;
    }
}

.bronze_c238 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.bronze_c238:hover img {
    transform: scale(1.05);
}

/* Navigation */
.chip_ee5c {
    display: none;
}

@media (min-width: 1024px) {
    .chip_ee5c {
        display: block;
    }
}

/* Grouped Navigation */
.shade-middle-ac09 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.tooltip-d562 {
    position: relative;
}

.item-17e3 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.tooltip-d562 .popup-wood-1a43 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.popup-wood-1a43 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.fast_b3c5 {
    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;
}

.fast_b3c5:hover,
.fast_b3c5.fn-active-c76f {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.detail_d5b0 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .detail_d5b0 {
        display: flex;
    }
}

/* Mobile Register Button */
.rough_5be3 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .rough_5be3 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.carousel-86b8 {
    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;
}

.carousel-86b8::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 */
.pressed_ae24 {
    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) {
    .pressed_ae24 {
        display: none;
    }
}

.pressed_ae24 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.pressed_ae24.fn-active-c76f span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.pressed_ae24.fn-active-c76f span:nth-child(2) {
    opacity: 0;
}

.pressed_ae24.fn-active-c76f span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.wood-9921 {
    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;
}

.wood-9921.fn-active-c76f {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.left-769e {
    overflow: hidden;
}

.main-out-aa4b {
    list-style: none;
    padding: 0.75rem 0;
}

.button-c314 {
    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;
}

.button-c314:hover,
.button-c314.fn-active-c76f {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.button-c314.image-outer-7669 {
    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;
}

.button-c314.image-outer-7669::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 */
.layout_cbea {
    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;
}

.form-5931 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.form-5931:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.preview-84b4 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.preview-84b4:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.sidebar-stone-1dbf {
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
    flex-direction: column;
    gap: 0.25rem;
}

.sidebar-stone-1dbf:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.module-86b9 {
    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;
}

.pro_6b8a {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.pro_6b8a:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.pattern_fluid_7b57 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.pattern_fluid_7b57:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.tooltip_57d7 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.tooltip_57d7: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);
}

.chip_cff5 {
    font-size: 1em;
    font-weight: 700;
}

.accordion_tall_6913 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.module-ac94 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.module-ac94::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;
}

.nav-e863 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .nav-e863 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.list_0089 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.panel-34d7 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.wide_fec5 {
    margin-bottom: 2rem;
}

.top_8bf0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .top_8bf0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.message_3723 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

.wrapper-9dfb {
    font-size: 1.5rem;
}

.popup_under_009c {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.list-clean-df50 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.section_narrow_e71f {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.section_narrow_e71f:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.green-936e {
    text-align: center;
    margin-bottom: 3rem;
}

.current_3411 {
    margin-bottom: 1rem;
}

.inner_9573 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.popup_d0fc {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .popup_d0fc {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .popup_d0fc.summary_wide_9143 {
        direction: rtl;
    }
    
    .popup_d0fc.summary_wide_9143 > * {
        direction: ltr;
    }
}

.nav-paper-970d {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.nav-paper-970d:first-child {
    margin-top: 0;
}

.hard_364d {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.iron_3154 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.iron_3154:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.thumbnail-pink-b809 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .thumbnail-pink-b809 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.lower-c59e {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.layout_over_c964 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.lower-5baa {
    list-style: none;
}

.lower-5baa li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lower-5baa li:last-child {
    border-bottom: none;
}

/* Games Features */
.hover_73df {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.header_left_8efe {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.tiny-e66c {
    font-size: 2rem;
    flex-shrink: 0;
}

.media-c285 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hero_clean_c38c {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.widget_30b6 {
    margin: 2rem 0;
}

.summary_ecd8 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.description-b5e7 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.out_59ca {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.pressed_996f {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.video-7b8a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .video-7b8a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.smooth_9a69 {
    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);
}

.smooth_9a69:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.photo-steel-aa0d {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.photo_static_f1f4 {
    font-size: 1.5rem;
}

.orange_48ec {
    color: var(--accent-color);
    margin: 0;
}

.paper-5361 {
    list-style: none;
}

.paper-5361 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.paper-5361 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.list_0c20 {
    margin: 2rem 0;
}

.media_copper_9725 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.table-1edd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .table-1edd {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sort_complex_43db {
    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);
}

.content_820b {
    font-size: 1.25rem;
}

.dropdown_138e {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.copper_bb96,
.dropdown-7893 {
    text-align: center;
    margin: 2rem 0;
}

.title_dc3f,
.primary_c009 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.widget-right-fca7 {
    margin: 2rem 0;
    text-align: center;
}

.detail-2cdc {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.detail-2cdc::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;
}

.aside_7a84 {
    position: relative;
    z-index: 1;
}

.new-645e {
    margin-bottom: 1rem;
}

.hovered_b46c {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.accent-light-59d9 {
    margin-bottom: 3rem;
}

.feature_fluid_d149 {
    margin-top: 3rem;
}

.gradient-cfcd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .gradient-cfcd {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gradient-cfcd .message_3723 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.footer-west-80c7 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.active_advanced_6503 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.dropdown_fc4d {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.carousel-up-6af0 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .carousel-up-6af0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .carousel-up-6af0 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.box-pink-6cd1 {
    margin-bottom: 1rem;
}

.dark-24a0 img {
    margin-bottom: 1rem;
}

.element_a12e {
    color: var(--text-gray);
    line-height: 1.6;
}

.text_411c {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.dropdown-first-f887 {
    list-style: none;
}

.dropdown-first-f887 li {
    margin-bottom: 0.5rem;
}

.dropdown-first-f887 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.dropdown-first-f887 a:hover {
    color: var(--accent-color);
}

.highlight_black_2465 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.paper_c049 {
    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);
}

.paper_c049:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.notification-d846 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.notification-d846 p {
    margin-bottom: 0.25rem;
}

.dropdown_plasma_ae68 {
    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) {
    .dropdown_plasma_ae68 {
        flex-direction: row;
    }
}

.hidden-active-4a5a {
    text-align: center;
}

@media (min-width: 768px) {
    .hidden-active-4a5a {
        text-align: left;
    }
}

.hidden-active-4a5a p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.sort-60ab {
    font-size: 0.75rem !important;
}

.form-91f4 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.thick_b256 {
    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);
    }
}

.media_advanced_8204 {
    animation: fadeInUp 0.6s ease-out;
}

.up-dd9c {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.old_88c3 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .old_88c3 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.highlight-4e3d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .highlight-4e3d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.container_c56b {
    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);
}

.container_c56b .tiny-e66c {
    font-size: 1.25rem;
}

.container_c56b .prev-a179 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.hovered_c0db {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .hovered_c0db {
        grid-template-columns: repeat(3, 1fr);
    }
}

.cold-5d39 {
    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);
}

.cold-5d39:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.background_8f7c {
    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);
}

.dropdown_basic_d2bd {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.notification-0e97 {
    color: var(--text-gray);
    line-height: 1.6;
}

.description_dirty_cc3a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.iron_56ad {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.iron_56ad .media-c285 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.iron_56ad .hero_clean_c38c {
    color: var(--text-gray);
    line-height: 1.6;
}

.hard-e14a {
    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);
}

.focus-white-c424 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.focus-white-c424 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.focus-white-c424 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.prev_e932 {
    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);
}

.message-0792 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.caption-stale-563f {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.caption-stale-563f label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.caption-stale-563f 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);
}

.caption-stale-563f input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.caption-stale-563f input::placeholder {
    color: var(--text-muted);
}

.secondary-85c0 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.accent-right-3dd9 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.accent-right-3dd9 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.shade_north_e1ad {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.shade_north_e1ad:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.table-1edd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .table-1edd {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sort_complex_43db {
    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);
}

.sort_complex_43db .content_820b {
    font-size: 1.25rem;
}

.sort_complex_43db .dropdown_138e {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.button-easy-fbb3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.status-45f4 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.status-45f4 .tiny-e66c {
    font-size: 2rem;
    flex-shrink: 0;
}

.status-45f4 .media-c285 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.status-45f4 .hero_clean_c38c {
    color: var(--text-gray);
    line-height: 1.6;
}

.block-1269 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.status-5db2 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.status-5db2 .content-93e4 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.status-5db2 .gold_037e {
    color: var(--text-gray);
    line-height: 1.6;
}

.message_077d {
    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);
}

.active_light_47e2 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .active_light_47e2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-aa02 {
    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);
}

.feature-aa02:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.medium-f5e0 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.selected-41aa {
    flex: 1;
}

.accent_center_453c {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.component-static-63c5 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.motion_9469 {
    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);
}

.motion_9469:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.accent-purple-9bd4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accent-purple-9bd4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.detail_131b {
    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);
}

.detail_131b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.footer_silver_335b {
    font-size: 2rem;
    flex-shrink: 0;
}

.card-ef87 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.brown_2330 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.breadcrumb_41f2 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.dim-e76b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wrapper_d352 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.shade_3904 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.shade_3904 .out_fa02 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.shade_3904 .slow_2e01 {
    color: var(--text-gray);
    line-height: 1.6;
}

.active_huge_b902 {
    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);
}

.in-eced {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.stale-8fbf {
    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);
}

.stale-8fbf .tiny-e66c {
    font-size: 2rem;
    flex-shrink: 0;
}

.stale-8fbf .media-c285 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.stale-8fbf .hero_clean_c38c {
    color: var(--text-gray);
    line-height: 1.6;
}

.large-2e18 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .large-2e18 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.prev-8765 {
    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);
}

.prev-8765:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.wide_34e3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .wide_34e3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.silver-a4db {
    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);
}

.silver-a4db:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.shade-7dce {
    font-size: 2rem;
    flex-shrink: 0;
}

.hidden_basic_1260 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.description-b5e7 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.old_c2fc {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.input-old-727d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.alert-1eb1 {
    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);
}

.alert-1eb1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.row_dynamic_012b {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    color: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: var(--shadow-accent);
}

.panel_21dd {
    flex: 1;
}

.iron-3b9f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.element-dynamic-1ade {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.tertiary_basic_50fc {
    color: var(--text-gray);
    line-height: 1.6;
}

.texture-f7ea {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.top_dd7e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.top_dd7e .content-93e4 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.top_dd7e .gold_037e {
    color: var(--text-gray);
    line-height: 1.6;
}

.dropdown-7893 {
    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);
}

.status_top_c42e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .status_top_c42e {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.surface_678e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .surface_678e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tag_474a {
    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);
}

.tag_474a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.link_rough_c868 {
    font-size: 2rem;
    flex-shrink: 0;
}

.footer_glass_2d62 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.thick_c16c {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.gradient-out-4eff {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.solid-0bd5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.table-3a49 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.stone-48e4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-632e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.medium_f7a2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.in-eced {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.stale-8fbf {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.stale-8fbf .media-c285 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.stale-8fbf .hero_clean_c38c {
    color: var(--text-gray);
    line-height: 1.6;
}

.tertiary_east_8a40 {
    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);
}

.texture-c7f2 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .texture-c7f2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .texture-c7f2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.title-mini-f2a7 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.title-mini-f2a7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.right-91cb {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.form-small-a394 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.picture_focused_6736 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.paper_2758 {
    padding: 1.5rem;
}

.east-748b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.avatar-slow-adae {
    list-style: none;
    padding: 0;
    margin: 0;
}

.avatar-slow-adae 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;
}

.avatar-slow-adae li:last-child {
    border-bottom: none;
}

.avatar-slow-adae li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.badge-solid-d69f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .badge-solid-d69f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.right-5294 {
    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);
}

.right-5294:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.caption_fef0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.bright-828b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.soft-41f6 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.pressed-231d {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.notification-narrow-063a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.block_south_dcfe {
    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);
}

.stale-96dc {
    font-size: 2rem;
    flex-shrink: 0;
}

.item-f1f4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.up-9229 {
    color: var(--text-gray);
    line-height: 1.6;
}

.frame_e4e4 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.button-hot-a4c9 {
    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);
}

.thick_ad30 {
    text-align: center;
}

.backdrop-fresh-ecca {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.link-32fb {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.grid_stone_60dc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.upper-2108 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.upper-2108 .media-c285 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.upper-2108 .hero_clean_c38c {
    color: var(--text-gray);
    line-height: 1.6;
}

.component-c3b5 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .component-c3b5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .component-c3b5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.liquid_8299 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.liquid_8299:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.background-490e {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.purple-1f68 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.media-c285 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.video_over_4b84 {
    padding: 1.5rem;
}

.hero_clean_c38c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.east-a869 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.east-a869 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;
}

.east-a869 li:last-child {
    border-bottom: none;
}

.east-a869 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.aside-prev-5f50 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.complex_1a22 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.complex_1a22:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.medium-6cf8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.alert-orange-43f2 {
    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);
}

.background_8f7c {
    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;
}

.dropdown_basic_d2bd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.notification-0e97 {
    color: var(--text-gray);
    line-height: 1.6;
}

.breadcrumb_under_f554 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.logo_758f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.cool_4bd8 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.surface-narrow-94b9 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.gradient_a46b {
    display: flex;
    gap: 1rem;
}

.gradient_a46b .photo_05b7 {
    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;
}

.modal-over-76f5 {
    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);
}

.top-5be9 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.shadow_complex_8402 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shadow_complex_8402 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;
}

.shadow_complex_8402 li:last-child {
    border-bottom: none;
}

.shadow_complex_8402 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.medium_1d84 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .medium_1d84 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .medium_1d84 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.column_e7f4 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.column_e7f4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.focus-78bc {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.message_static_bce4 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.out_fa02 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.mini-af97 {
    font-size: 1rem;
}

.wide-e80a {
    padding: 1.5rem;
}

.slow_2e01 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.tooltip_aaa4 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.tooltip_aaa4 .thick_ad30 {
    text-align: center;
}

.tooltip_aaa4 .link-32fb {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.tooltip_aaa4 .pink-2537 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.summary-dynamic-df34 {
    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);
}

.summary-dynamic-df34:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.narrow-06e7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .narrow-06e7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.active_static_0e0d {
    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_static_0e0d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.container_ab69 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.accordion_purple_2a34 {
    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);
}

.outline-7322 {
    font-size: 2rem;
    flex-shrink: 0;
}

.down_d84d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.old_2b0e {
    color: var(--text-gray);
    line-height: 1.6;
}

.green_73da {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.description_mini_3fa0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.down-51e7 {
    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);
}

.form-28c4 {
    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;
}

.form-28c4.shade_huge_979d {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.form-28c4.mask-stale-2478 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.form-28c4.gallery-cd9b {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.form-28c4.photo_slow_62c8 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.form-28c4.shadow-0d71 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.slider_93ee {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.media_21f8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.outline_1dad {
    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);
}

.steel_1a1b {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.block-1269 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.block-1269 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;
}

.block-1269 li:last-child {
    border-bottom: none;
}

.block-1269 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.disabled-thick-d08a {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .disabled-thick-d08a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .disabled-thick-d08a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.video_lite_1508 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.video_lite_1508:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.video_lite_1508.border_dark_2ecd {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .video_lite_1508.border_dark_2ecd {
        grid-column: span 3;
    }
}

.box-808d {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.video_lite_1508.border_dark_2ecd .box-808d {
    background: rgba(6, 182, 212, 0.1);
}

.west-366e {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.notification_26f1 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.video_lite_1508.border_dark_2ecd .notification_26f1 {
    color: var(--info-color);
}

.bright-38a7 {
    padding: 1.5rem;
    text-align: center;
}

.icon-162a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.video_lite_1508.border_dark_2ecd .icon-162a {
    color: var(--info-color);
}

.dark_dd8f {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.focus_2a7c {
    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 */
.element-fb5e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .element-fb5e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gradient_mini_85ee {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.gradient_mini_85ee:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.frame_ae23 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.status-45f4 {
    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);
}

.content_820b {
    font-size: 2rem;
    flex-shrink: 0;
}

.card-gas-91db {
    flex: 1;
}

.media_copper_9725 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.column_fresh_5195 {
    color: var(--text-gray);
    line-height: 1.6;
}

.badge_ac79 {
    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);
}

.panel_7c12 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.left_70d5 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.thick_b256 {
    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);
}

.accordion-f486 {
  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);
}

.accordion-f486 .thick_ad30 {
    text-align: center;
}

.accordion-f486 .backdrop-fresh-ecca {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.accordion-f486 .link-32fb {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.hover_upper_4afa {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hovered_4da1 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dim-a99a {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.complex_fc1a {
    color: var(--text-gray);
    line-height: 1.6;
}

.pattern_a74d {
    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);
}

.bottom_4d2e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.content_easy_c7d0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.rough-b43c {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .rough-b43c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .rough-b43c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fluid-7ad9 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.fluid-7ad9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.header_down_91dc {
    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);
}

.bright-74e2 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.pagination-dcaf {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.card-dirty-9630 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-dirty-9630.active-gas-ab56 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.card-dirty-9630.widget_af4d {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.card-dirty-9630.motion-bc27 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.paragraph_solid_b133 {
    padding: 1.5rem;
    text-align: center;
}

.box-8964 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.preview_soft_a4ba {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.preview_soft_a4ba .row_089b {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.badge-over-a299 {
    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);
}

.badge-over-a299:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.section_stale_a256 {
  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);
}

.top_4702 {
    text-align: center;
}

.top_4702 .backdrop-fresh-ecca {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.top_4702 .link-32fb {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.chip-1586 { text-align: center; }
.button_pressed_2563 { text-align: left; }
.widget_wide_4705 { text-align: right; }

.bright-102f { margin-bottom: 0; }
.paragraph_f3a0 { margin-bottom: 0.5rem; }
.nav_left_f6bc { margin-bottom: 1rem; }
.hidden_complex_c8ba { margin-bottom: 1.5rem; }
.breadcrumb-c421 { margin-bottom: 2rem; }

.photo-3e36 { margin-top: 0; }
.pressed_7955 { margin-top: 0.5rem; }
.warm-87e7 { margin-top: 1rem; }
.wrapper_dd66 { margin-top: 1.5rem; }
.disabled_e86a { margin-top: 2rem; }

.fn-hidden-c76f { display: none; }
.fn-visible-c76f { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .module-ac94 {
        padding: 6rem 0 3rem;
    }
    
    .nav-e863 {
        text-align: center;
    }
    
    .popup_d0fc {
        text-align: center;
    }
    
    .top_8bf0 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .grid-middle-7666,
    .wood-9921,
    .detail-2cdc,
    .dropdown_fc4d {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .module-ac94 {
        background: none;
    }
}

/* Providers Section */
.block_mini_be32 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.gold-8dc0 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gold-8dc0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gold-8dc0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.widget_a97f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.widget_a97f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.badge-24c8 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.layout-current-b7a4 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.over-7874 {
    list-style: none;
    padding: 0;
}

.over-7874 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.over-7874 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.overlay_df10 {
    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);
}

.overlay_df10 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.popup-soft-39bb {
    padding: var(--section-padding);
}

.static_9107 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .static_9107 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.paper-69f9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.paper-69f9:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.carousel_green_95e6 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.notification-7d36 {
    display: flex;
    flex-direction: column;
}

.overlay-221a {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.solid-ccbd {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.row-pressed-662e {
    color: var(--accent-color);
}

.button_716a {
    font-size: 1.25rem;
}

.dim_b926 {
    margin-bottom: 1rem;
}

.dim_b926 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.cool-7f28 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.rough-c3dd {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.thick_ad30 {
    text-align: center;
}

.backdrop-fresh-ecca {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.link-32fb {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.gallery-cool-b61d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tag_pressed_c7f5 {
    margin: 2rem 0;
}

.paragraph-thick-6f42 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.paragraph-thick-6f42 .tiny-e66c {
    font-size: 2rem;
    flex-shrink: 0;
}

.orange-575f {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.icon_9c8a {
    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;
}

.icon_9c8a:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.smooth-c2f7 {
    font-size: 2rem;
}

.feature_6b1e {
    display: flex;
    flex-direction: column;
}

.shade-8266 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.fresh-49ae {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.dark_cb25 {
    padding: var(--section-padding);
}

.component-selected-c0c7 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .component-selected-c0c7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .component-selected-c0c7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dim_0a9a {
    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);
}

.dim_0a9a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.dim_0a9a .backdrop-fresh-ecca {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.dim_0a9a .link-32fb {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.dim_0a9a .element-complex-6c39 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.summary-2091 {
    margin-top: 4rem;
}

.heading-huge-21d7 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.form_cea0 {
    overflow-x: auto;
}

.fluid_c21c {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.fluid_c21c thead {
    background: var(--accent-color);
}

.fluid_c21c th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.fluid_c21c td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.fluid_c21c tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.fluid_c21c tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.silver_fa78 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.media_hot_0b60 {
    max-width: 900px;
    margin: 0 auto;
}

.filter-copper-2420 {
    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);
}

.filter-copper-2420:hover {
    border-color: var(--accent-color);
}

.message_old_09f0 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.message_old_09f0 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.button-8b60 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.filter-copper-2420.fn-active-c76f .button-8b60 {
    transform: rotate(45deg);
}

.summary_c99e {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.filter-copper-2420.fn-active-c76f .summary_c99e {
    max-height: 1000px;
}

.summary_c99e p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.header_hovered_12a6 {
    padding: var(--section-padding);
}

.focus-white-c424 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.purple-aa6b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.rough-94da {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .rough-94da {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form_new_8840 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.panel_ac53 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.down-3166 {
    font-size: 2rem;
}

.lite_5a79 {
    color: var(--text-white);
    margin: 0;
}

.notification_8549 {
    list-style: none;
    padding: 0;
}

.notification_8549 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.notification_8549 li:last-child {
    border-bottom: none;
}

.gallery-dim-f24a {
    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);
}

.gallery-dim-f24a p {
    color: var(--success-color);
    margin: 0;
}

.feature_077f {
    margin-top: 3rem;
}

.top-5be9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.outline_yellow_51ef {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .outline_yellow_51ef {
        grid-template-columns: repeat(2, 1fr);
    }
}

.surface-8f59 {
    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);
}

.banner_1715 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.surface-8f59 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.static_1a5b {
    padding: var(--section-padding);
}

.info_lite_ad11 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .info_lite_ad11 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.black_6597 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.black_6597:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.east-a760 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.motion-322c {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.shade_b7c9 {
    flex: 1;
}

.tooltip-gold-b3d4 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.bronze-3a99 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.sidebar-6b0d {
    color: var(--text-gray);
    line-height: 1.6;
}

.layout-9815 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.layout-9815:last-child {
    border-bottom: none;
}

/* Comparison Section */
.menu-clean-c8be {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.list_f612 {
    padding: var(--section-padding);
}

.form_88da {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.slow-a417 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .slow-a417 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hover_middle_e661 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.accent_small_9b1e, .avatar_78af, .paragraph-9127 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.paragraph-9127 {
    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 */
.hovered-0c98 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.search_fcc7 {
    margin: 2rem 0;
}

.over-aeb3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.frame_glass_8a05 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.text_stone_5f4c {
    list-style: none;
    padding: 0;
}

.text_stone_5f4c 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;
}

.text_stone_5f4c li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.text_stone_5f4c li:last-child {
    border-bottom: none;
}

.nav_medium_dd17 {
    text-align: center;
    margin-top: 2rem;
}

.detail-35dd {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.outline-2e26 {
    padding: var(--section-padding);
}

.thumbnail-8ff2 {
    margin: 2rem 0;
}

.border-smooth-a9b7 {
    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) {
    .border-smooth-a9b7 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.border-smooth-a9b7:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.grid-red-dea1 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.lite_2f01 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.logo-gold-5a1c {
    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;
}

.icon-paper-bfa6 {
    flex: 1;
}

.row_hovered_a8b1 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.hot_0af3 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.red_3762 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.avatar_bronze_6702 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .avatar_bronze_6702 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.secondary-e77a {
    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);
}

.secondary-e77a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.secondary-e77a .backdrop-fresh-ecca {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.secondary-e77a .link-32fb {
    color: var(--text-gray);
    font-size: 1rem;
}

.modal_last_1aec {
    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);
}

.selected-f11a {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.selected-f11a strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.north_d3f6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .north_d3f6 {
        grid-template-columns: 1fr 1fr;
    }
}

.texture-rough-c610 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tabs-aeb9 {
    margin-bottom: 1.5rem;
}

.tabs-aeb9 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.tabs-aeb9 input,
.tabs-aeb9 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;
}

.tabs-aeb9 input:focus,
.tabs-aeb9 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.medium_d8f0 {
    width: 100%;
    margin-top: 1rem;
}

.dynamic-ff33 {
    display: flex;
    align-items: center;
}

.hidden-large-15f0 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.pattern_60c1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.tooltip-7d9b {
    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;
}

.label_8a65 {
    color: var(--text-gray);
}

.under-9f0c {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.info-5c43 {
    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);
}

.info-5c43 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.cool_e690 {
    margin-top: 3rem;
}

.panel_989a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.hero-dc75 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.label-dim-dd36 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.tooltip-62e5 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tooltip-62e5:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.mask_a972 {
    padding: var(--section-padding);
}

.accordion-green-db7a {
    margin: 2rem 0;
}

.menu_87e9 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.complex_160e {
    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;
}

.complex_160e:hover, .complex_160e.fn-active-c76f {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.card-d6f2 {
    display: none;
}

.card-d6f2.fn-active-c76f {
    display: block;
}

.slow-7fef {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.search-1fa9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.old_4d0d h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.old_4d0d ul {
    list-style: none;
    padding: 0;
}

.old_4d0d ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.old_4d0d ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.current_0474 {
    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 */
.tag-cool-bdd5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.sort-wide-eaaa {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.filter-light-9f00 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.icon-red-2c57 {
    color: var(--accent-color);
    margin: 0;
}

.label_light_2d8b {
    display: flex;
    gap: 1.5rem;
}

.layout_2a80 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.article-copper-4e24 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.wood-8308 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.wood-8308.accordion-action-69ba {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.wood-8308.surface_gas_507d {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.wood-8308.label-next-99e4 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.hero_935d {
    margin-top: 2rem;
}

.wrapper_3686 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.progress-purple-8417 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .progress-purple-8417 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.over_152b {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.status_slow_2922 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.wide-3341 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.highlight-pressed-276c {
    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 */
.over_f780 {
    padding: var(--section-padding);
}

.image_outer_b405 {
    margin: 2rem 0;
}

.light_9fa6 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.nav_smooth_9906 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.tabs-short-aba5 {
    list-style: none;
    padding: 0;
}

.tabs-short-aba5 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
    padding-left: 1.5rem;
    position: relative;
}

.tabs-short-aba5 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.tabs-short-aba5 li:last-child {
    border-bottom: none;
}

.widget-6b66 {
    margin: 2rem 0;
}

.frame_c2d1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.column-869f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .column-869f {
        grid-template-columns: repeat(2, 1fr);
    }
}

.cool-28b8 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.banner_middle_88a9 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.logo-68f4 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.primary_0812 {
    margin-top: 2rem;
}

.accent_center_453c {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.heading-bronze-8895 {
    list-style: none;
    padding: 0;
}

.breadcrumb_dirty_a530 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.breadcrumb_dirty_a530 a {
    color: var(--accent-color);
    text-decoration: none;
}

.breadcrumb_dirty_a530 a:hover {
    text-decoration: underline;
}

.status-red-5570 {
    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 */
.hovered_6668 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.over_f9f7 {
    margin: 2rem 0;
}

.content_e5b2 {
    margin-bottom: 3rem;
}

.content_e5b2 .frame_glass_8a05 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.purple_a7c5 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.badge_e96c {
    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);
}

.badge_e96c:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.layout_d6e1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .layout_d6e1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.nav-pro-e155 {
    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 */
.table-31ce {
    padding: var(--section-padding);
}

.glass-6a0d {
    margin: 2rem 0;
}

.fixed-3a95 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.form-a3c7 {
    overflow-x: auto;
    margin: 2rem 0;
}

.slider_pressed_9768 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.clean-e7f8 {
    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;
}

.breadcrumb_inner_5b2c {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.texture_08a9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .texture_08a9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.short-88a3 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.short-88a3 .tiny-e66c {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.short-88a3 .media-c285 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.main-east-7b66 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.gas-294a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.north-a403 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .north-a403 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.photo-simple-b769 {
    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;
}

.photo-simple-b769:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.primary-6f10 {
    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);
}

.chip-tall-5955 {
    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;
}

.main_17e3 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.backdrop_pink_880e {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.south-78c3 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.last_d78f {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.solid_b4ef {
    color: var(--text-white);
    font-weight: 600;
}

.logo_under_0475 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.focus_f8b4 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.focus_f8b4 .photo_05b7 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.slow_f56e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .slow_f56e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.new-08c5 {
    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);
}

.new-08c5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.new-08c5 .backdrop-fresh-ecca {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.new-08c5 .link-32fb {
    color: var(--text-gray);
    font-size: 1rem;
}

.thumbnail_rough_6f90 {
    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);
}

.alert_south_40bb {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.alert_south_40bb strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.solid-0bd5 {
    margin: 2rem 0;
}

.table-3a49 {
    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);
}

.table-3a49:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.stone-48e4 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.button_rough_72f2 {
    flex: 1;
}

.info-632e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.medium_f7a2 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.in-eced {
    margin: 2rem 0;
}

.stale-8fbf {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.stale-8fbf .media-c285 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.stale-8fbf .hero_clean_c38c {
    color: var(--text-gray);
    margin: 0;
}

.tertiary_east_8a40 {
    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);
}

.tertiary_east_8a40 .title_dc3f {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.main-east-7b66 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.row_dynamic_012b {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.panel_21dd {
    flex: 1;
}

.element-dynamic-1ade {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.tertiary_basic_50fc {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.background_8f7c {
    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;
}

.info-outer-a3f7 {
    flex: 1;
}

.dropdown_basic_d2bd {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.notification-0e97 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.cool_4bd8 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.surface-narrow-94b9 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.gradient_a46b {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.gradient_a46b .photo_05b7 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.modal-over-76f5 {
    margin-top: 2rem;
}

.modal-over-76f5 .top-5be9 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.breadcrumb-8eb4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.button-hot-a4c9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .button-hot-a4c9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.button-hot-a4c9 .thick_ad30 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.grid_stone_60dc {
    margin: 2rem 0;
}

.upper-2108 {
    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 */
.chip_south_d63c {
    padding: var(--section-padding);
}

.video_over_4b84 {
    margin-top: 1rem;
}

.east-a869 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.east-a869 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.east-a869 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.wrapper_prev_0156 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pink-fd2d {
    margin: 2rem 0;
}

.mask-c919 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.overlay_3995 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.current_4646 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.row_dim_6fba {
    margin: 2rem 0;
}

.box_c7da {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.box_c7da .frame_glass_8a05 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.iron_6f5b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .iron_6f5b {
        grid-template-columns: repeat(2, 1fr);
    }
}

.widget_174a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--secondary-bg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.block-0398 {
    color: var(--text-white);
    font-weight: 600;
}

.photo_9e07 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.pro-9cb0 {
    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);
}

.pro-9cb0 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.popup_aae1 {
    padding: var(--section-padding);
}

.layout_complex_30c1 {
    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;
}

.layout_complex_30c1:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.message-clean-d480 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.message-clean-d480 .banner_1715 {
    font-size: 2rem;
    flex-shrink: 0;
}

.message-clean-d480 .tag-d910 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.right-59e8 {
    flex: 1;
}

.paper_baa9 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.video_ed28 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.video_ed28 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.video_ed28 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.layout_272f {
    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);
}

.layout_272f p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.layout_272f strong {
    color: var(--warning-color);
}

/* Slots Section */
.popup-91bf {
    padding: var(--section-padding);
}

.dim-e76b {
    margin: 2rem 0;
}

/* Table Games Section */
.white-3f54 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.wrapper_d352 {
    margin: 2rem 0;
}

.shade_3904 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.shade_3904:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.shade_3904 .out_fa02 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.shade_3904 .slow_2e01 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.active_huge_b902 {
    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);
}

.active_huge_b902 .title_dc3f {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.heading_iron_3491 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.picture_dim_0dcc {
    margin: 2rem 0;
}

.active_thick_91e3 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.label-liquid-255c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.bright-99e7 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.pressed-2f57 {
    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);
}

.pressed-2f57:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.pressed-2f57.fn-active-c76f {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hover-7425 {
    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);
}

.dropdown-middle-8dc5 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.dropdown-middle-8dc5 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.under-76b7 {
    padding: var(--section-padding);
}

.simple_0a5a {
    margin: 2rem 0;
}

.stone-6400 {
    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);
}

.stone-6400:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .stone-6400 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.form_prev_fedb {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.pro_bebb {
    flex: 1;
}

.footer_easy_7b57 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.motion_4d42 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.up_4795 {
    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;
}

.widget_tall_f9ea {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.shadow-ec47 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.media-gas-4363 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.silver-3f43 {
    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;
}

.silver-3f43:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.selected-9880 {
    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);
}

.green-9bb0 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.green-9bb0 strong {
    color: var(--accent-color);
}

/* New Games Section */
.basic_8230 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.menu-middle-6dae {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .menu-middle-6dae {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .menu-middle-6dae {
        grid-template-columns: repeat(4, 1fr);
    }
}

.panel-next-607b {
    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;
}

.panel-next-607b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.center-93dc {
    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;
}

.black-3cf9 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.light_f3c3 {
    font-size: 2rem;
}

.footer-3cee {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.texture-next-b620 {
    flex: 1;
}

.basic_7a31 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.frame-1949 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.search_31db {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.blue-7d5e {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.small-4b12 {
    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;
}

.prev-bcb4 {
    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;
}

.prev-bcb4:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.title_iron_404e {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.full_0ff7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.heading-5824 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .heading-5824 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.thumbnail-outer-7082 {
    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);
}

.iron-dbb5 {
    color: var(--text-white);
    font-weight: 600;
}

.main-slow-a726 {
    color: var(--accent-color);
    font-weight: 600;
}

.status_wood_d647 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.status_wood_d647 strong {
    color: var(--accent-color);
}

/* Security Section */
.black-2554 {
    padding: var(--section-padding);
}

/* Benefits Section */
.text_6890 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.panel-gold-4075 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.description-wood-407e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.box_old_2442 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.wrapper_lite_9a21 {
    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) {
    .wrapper_lite_9a21 {
        flex-direction: column;
        gap: 1rem;
    }
}

.wrapper_lite_9a21:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.wrapper_lite_9a21 .background_8f7c {
    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;
}

.wrapper_lite_9a21 .info-outer-a3f7 {
    flex: 1;
}

.wrapper_lite_9a21 .dropdown_basic_d2bd {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.wrapper_lite_9a21 .notification-0e97 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.form-gas-ca7f {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.form-gas-ca7f .media_copper_9725 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.form-gas-ca7f .button-easy-fbb3 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.form-gas-ca7f .button-easy-fbb3 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.form-gas-ca7f .button-easy-fbb3 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.chip-bronze-c84b {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.lite_637c {
    padding: var(--section-padding);
}

.lower-7adc {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .lower-7adc {
        grid-template-columns: repeat(3, 1fr);
    }
}

.popup_fixed_1203 {
    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);
}

.popup_fixed_1203:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.popup_fixed_1203 .right-c1ec {
    font-size: 2rem;
    flex-shrink: 0;
}

.popup_fixed_1203 .hero_ede5 {
    flex: 1;
}

.popup_fixed_1203 .content-93e4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.popup_fixed_1203 .modal_a765 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.form-lite-ad59 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.form-lite-ad59 .input_bottom_ca2d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.form-lite-ad59 .notice-a390 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.form-lite-ad59 .notice-a390 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);
}

.form-lite-ad59 .notice-a390 li:last-child {
    border-bottom: none;
}

.form-lite-ad59 .notice-a390 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;
}

.form-lite-ad59 .notice-a390 li strong {
    color: var(--text-white);
}

.component_thick_d629 {
    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);
}

.component_thick_d629 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.component_thick_d629 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.dropdown_right_5f64 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.shade-cold-0fdb {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .shade-cold-0fdb {
        grid-template-columns: repeat(2, 1fr);
    }
}

.paper-76e9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.paper-76e9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.frame-2867 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pattern-lower-77fd {
    font-size: 2rem;
}

.title_10b5 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.disabled-fe5a {
    flex: 1;
}

.preview_red_da92 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.preview_red_da92 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.preview_red_da92 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.gas-e055 {
    margin-top: 3rem;
}

.light_9fa6 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.nav_smooth_9906 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tabs-short-aba5 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tabs-short-aba5 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.tabs-short-aba5 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.tabs-short-aba5 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.detail_3d39 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.image_plasma_124f {
    margin: 2rem 0;
}

.summary_1129 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.summary_1129 .frame_glass_8a05 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.out-ae68 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .out-ae68 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.description_green_ad96 {
    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);
}

.description_green_ad96:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.logo-simple-171f {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.wood-627f {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.summary-wide-6bfd {
    padding: var(--section-padding);
}

.secondary_4b40 {
    margin: 2rem 0;
}

.hard-9a44 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .hard-9a44 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hard-9a44 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pink-a460 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.pink-a460:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.hard-7fad {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.backdrop_4d35 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.prev_0bce {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.prev_0bce.badge_old_a2f1 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.card_71eb {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.dim_db07 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.gallery_left_437f {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer_85f3 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.status_in_437c {
    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);
}

.status_in_437c p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.status_in_437c strong {
    color: var(--accent-color);
}

/* Update Log Section */
.shadow_medium_5ff5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.sort_1e23 {
    margin: 2rem 0;
}

.logo_lite_f3a4 {
    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) {
    .logo_lite_f3a4 {
        flex-direction: column;
        gap: 1rem;
    }
}

.logo_lite_f3a4:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.logo_lite_f3a4::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);
}

.media-5888 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.text_17ce {
    flex: 1;
}

.dim_b807 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.search_f037 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search_f037 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.white_e943 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.badge_medium_10cb {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.dropdown_d9a0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .dropdown_d9a0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.chip-f533 {
    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);
}

.overlay-in-ff37 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.wide_ecf6 {
    flex: 1;
}

.preview_226a {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.input_a11d {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.pressed-69df {
    margin-top: 2rem;
    text-align: center;
}

.tabs_tiny_2f9c {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.tabs_tiny_2f9c strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.narrow-06e7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .narrow-06e7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.active_static_0e0d {
    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);
}

.active_static_0e0d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.active_static_0e0d .caption_fef0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.active_static_0e0d .bright-828b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.active_static_0e0d .soft-41f6 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.active_static_0e0d .pressed-231d {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.status-73b7 {
    padding: var(--section-padding);
}

.accordion_purple_2a34 .panel_57fd {
    flex: 1;
}

/* Promo Calendar Section */
.title-fluid-0f5b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.section_7be8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .section_7be8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tooltip_current_42c1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.paragraph-pro-dc0d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.pagination-1b78 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.brown_8bf0 {
    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);
}

.item-tall-ba8a {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.main_lite_e833 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.link_a6fe {
    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);
}

.link_a6fe p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.link_a6fe strong {
    color: var(--accent-color);
}

/* Requirements Section */
.new-7e04 {
    padding: var(--section-padding);
}

.purple-c940 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .purple-c940 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gradient-b5f7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.small_7eb4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.advanced-e4ed {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advanced-e4ed li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.first-85fa {
    margin-top: 3rem;
}

.first-85fa .light_9fa6 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.first-85fa .nav_smooth_9906 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.first-85fa .tabs-short-aba5 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.first-85fa .tabs-short-aba5 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.first-85fa .tabs-short-aba5 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.first-85fa .tabs-short-aba5 li strong {
    color: var(--warning-color);
}

.north-332d {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.north-332d strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.widget_green_8d11 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.black_f83e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .black_f83e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.surface_liquid_3bef {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.surface_liquid_3bef .frame_glass_8a05 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.disabled-up-6a75 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.focused-13db {
    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);
}

.focused-13db:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.old_767b {
    font-size: 2rem;
    flex-shrink: 0;
}

.up-ca40 {
    flex: 1;
}

.popup-0054 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.tertiary_slow_e5cb {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.module_542e {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.feature_bbb8 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.gallery-e802 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .gallery-e802 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pressed-c9a7 {
    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);
}

.pressed-c9a7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.module_d4b3 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.aside_2ed3 {
    color: var(--text-gray);
    font-size: 1rem;
}

.selected-f11a {
    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);
}

.box-08e7 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.box-08e7 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.pro-de50 { 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; }
.section_narrow_e71f, .iron_3154 { max-width:100%; height:auto; }

.layout_cbea, .sidebar-stone-1dbf, .module-86b9 { white-space:normal; }

.nav-e863,
.popup_d0fc,
.element-fb5e,
.narrow-06e7,
.in-eced,
.rough-b43c {
  flex-wrap:wrap;
}

[class*="grid"],
.gallery-e802,
.hard-9a44,
.gradient-cfcd {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.module-ac94 img,
.popup_d0fc img,
.list-clean-df50 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.list_0089, .panel-34d7,
.current_3411, .inner_9573 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.form_cea0 { width:100%; overflow-x:auto; }
.form_cea0 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.gold-8dc0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .gold-8dc0 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.widget_a97f {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.component-selected-c0c7,
.shadow_8003,
.detail_hard_b03c,
.header-upper-c833,
.avatar_bronze_6702,
.gallery-e802,
.hard-9a44,
.gradient-cfcd,
.section_stale_a256,
.simple_0a5a,
.gold-8dc0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .component-selected-c0c7,
  .shadow_8003,
  .detail_hard_b03c,
  .header-upper-c833,
  .avatar_bronze_6702,
  .gallery-e802,
  .hard-9a44,
  .gradient-cfcd,
  .section_stale_a256,
  .simple_0a5a,
  .gold-8dc0 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.dim_0a9a,
.secondary-e77a,
.pressed-c9a7,
.message_3723,
.pink-a460,
.top_4702,
.stone-6400,
.widget_a97f {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.out_d277,
.inner-c3ed,
.module-2316 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.out_d277 > *,
.inner-c3ed > *,
.module-2316 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: ca28 */
.phantom-card-y0 {
  padding: 0.5rem;
  font-size: 13px;
  line-height: 1.3;
}
