/* {$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;
}

.picture_brown_0a4d {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.north_c0db {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .north_c0db {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .north_c0db {
        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 */
.new-e1de {
    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);
}

.tooltip_539d {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .tooltip_539d {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .accordion_pro_335e {
        grid-column: 1;
    }
    
    .lite_e545 {
        grid-column: 2;
    }
    
    .feature_9174 {
        grid-column: 3;
    }
}

.accordion_pro_335e img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.accordion_pro_335e:hover img {
    transform: scale(1.05);
}

/* Navigation */
.hero-steel-d5ac {
    display: none;
}

@media (min-width: 1024px) {
    .hero-steel-d5ac {
        display: block;
    }
}

/* Grouped Navigation */
.menu_02db {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.article_5abc {
    position: relative;
}

.middle_ce6b {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.article_5abc .progress-gold-a89d {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.progress-gold-a89d {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.photo_smooth_649b {
    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;
}

.photo_smooth_649b:hover,
.photo_smooth_649b.fn-active-3f01 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.next_ce73 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .next_ce73 {
        display: flex;
    }
}

/* Mobile Register Button */
.lite_e545 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .lite_e545 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.footer_8e96 {
    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;
}

.footer_8e96::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 */
.feature_9174 {
    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) {
    .feature_9174 {
        display: none;
    }
}

.feature_9174 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.feature_9174.fn-active-3f01 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.feature_9174.fn-active-3f01 span:nth-child(2) {
    opacity: 0;
}

.feature_9174.fn-active-3f01 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.small-7e47 {
    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;
}

.small-7e47.fn-active-3f01 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.link_1edf {
    overflow: hidden;
}

.plasma-05fd {
    list-style: none;
    padding: 0.75rem 0;
}

.detail-b9e5 {
    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;
}

.detail-b9e5:hover,
.detail-b9e5.fn-active-3f01 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.detail-b9e5.accordion-29ed {
    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;
}

.detail-b9e5.accordion-29ed::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 */
.under_b4ca {
    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;
}

.green_a6c3 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.green_a6c3:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.footer_selected_b6fd {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.footer_selected_b6fd:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.background-next-619f {
    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;
}

.background-next-619f:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.focus-medium-39af {
    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;
}

.stale_98fc {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.stale_98fc:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.up_c802 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.up_c802:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.nav-aad0 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.nav-aad0: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);
}

.gradient-small-027c {
    font-size: 1em;
    font-weight: 700;
}

.right-531f {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.card-brown-7d10 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.card-brown-7d10::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;
}

.video_8168 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .video_8168 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.form-short-a835 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.over_18b2 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.video-6eb9 {
    margin-bottom: 2rem;
}

.rough_9488 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .rough_9488 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fixed-a3c8 {
    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);
}

.label-87a3 {
    font-size: 1.5rem;
}

.cool_a423 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.pattern-smooth-32b1 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.notice_lite_eb94 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.notice_lite_eb94:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.label-4248 {
    text-align: center;
    margin-bottom: 3rem;
}

.sidebar-107a {
    margin-bottom: 1rem;
}

.table_hovered_da7a {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.container-clean-a971 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .container-clean-a971 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .container-clean-a971.search_d915 {
        direction: rtl;
    }
    
    .container-clean-a971.search_d915 > * {
        direction: ltr;
    }
}

.disabled_b822 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.disabled_b822:first-child {
    margin-top: 0;
}

.prev-c528 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.frame-652c {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.frame-652c:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.shade-green-83e4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shade-green-83e4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.down_29bd {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.primary-old-3f98 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.dim-04ff {
    list-style: none;
}

.dim-04ff li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dim-04ff li:last-child {
    border-bottom: none;
}

/* Games Features */
.dynamic_9b1f {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.inner-1707 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.input_black_2211 {
    font-size: 2rem;
    flex-shrink: 0;
}

.carousel_liquid_ea20 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hover-wood-8ff3 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.info_1925 {
    margin: 2rem 0;
}

.section_e71f {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.up_cddd {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.hover_63d8 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.red-d9f8 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.backdrop_7730 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .backdrop_7730 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tertiary-e033 {
    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);
}

.tertiary-e033:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.secondary_c5f9 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.row_cc17 {
    font-size: 1.5rem;
}

.dropdown-narrow-2b64 {
    color: var(--accent-color);
    margin: 0;
}

.text_8ecf {
    list-style: none;
}

.text_8ecf li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.text_8ecf li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.aside_4129 {
    margin: 2rem 0;
}

.purple-fad5 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.modal_2c5f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .modal_2c5f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hover_tall_8959 {
    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);
}

.aside_3c1c {
    font-size: 1.25rem;
}

.right-6151 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.full_f7f4,
.pro-ddac {
    text-align: center;
    margin: 2rem 0;
}

.panel_ba7c,
.progress-brown-f93c {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.primary-pink-edd6 {
    margin: 2rem 0;
    text-align: center;
}

.paper-a6fb {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.paper-a6fb::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;
}

.shadow_571c {
    position: relative;
    z-index: 1;
}

.caption-996c {
    margin-bottom: 1rem;
}

.element_5cd1 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.silver_dabd {
    margin-bottom: 3rem;
}

.feature-lower-629a {
    margin-top: 3rem;
}

.cold_c2ea {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .cold_c2ea {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cold_c2ea .fixed-a3c8 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.wide_e5a0 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tertiary_right_8446 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.list_8064 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.lite_b341 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .lite_b341 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .lite_b341 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.box-ff80 {
    margin-bottom: 1rem;
}

.red_22d1 img {
    margin-bottom: 1rem;
}

.dropdown_dim_44a2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.media-416f {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.progress_hovered_bd80 {
    list-style: none;
}

.progress_hovered_bd80 li {
    margin-bottom: 0.5rem;
}

.progress_hovered_bd80 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.progress_hovered_bd80 a:hover {
    color: var(--accent-color);
}

.text_43b7 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-30e9 {
    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);
}

.feature-30e9:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.pagination-old-5752 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.pagination-old-5752 p {
    margin-bottom: 0.25rem;
}

.banner-be98 {
    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) {
    .banner-be98 {
        flex-direction: row;
    }
}

.filter_silver_9dbf {
    text-align: center;
}

@media (min-width: 768px) {
    .filter_silver_9dbf {
        text-align: left;
    }
}

.filter_silver_9dbf p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.pressed_5adb {
    font-size: 0.75rem !important;
}

.image-65c7 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.dropdown-11ee {
    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);
    }
}

.chip_d385 {
    animation: fadeInUp 0.6s ease-out;
}

.summary-rough-d895 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.component-last-8cc7 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .component-last-8cc7 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.nav-new-73b6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .nav-new-73b6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hero_73cc {
    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);
}

.hero_73cc .input_black_2211 {
    font-size: 1.25rem;
}

.hero_73cc .dirty_575a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.link_214a {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .link_214a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tooltip-simple-746b {
    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);
}

.tooltip-simple-746b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.modal-basic-8aa5 {
    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);
}

.clean_cf90 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.gallery_center_8c1b {
    color: var(--text-gray);
    line-height: 1.6;
}

.north-fa43 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.text-easy-82dc {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.text-easy-82dc .carousel_liquid_ea20 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.text-easy-82dc .hover-wood-8ff3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.item-48e0 {
    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_dark_3dc9 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.focus_dark_3dc9 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.focus_dark_3dc9 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.wood-b69e {
    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);
}

.nav_prev_a54f {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.breadcrumb-glass-9b52 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.breadcrumb-glass-9b52 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.breadcrumb-glass-9b52 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);
}

.breadcrumb-glass-9b52 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.breadcrumb-glass-9b52 input::placeholder {
    color: var(--text-muted);
}

.carousel_bb64 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.nav-6092 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.nav-6092 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.banner-b04f {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.banner-b04f:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.modal_2c5f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .modal_2c5f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hover_tall_8959 {
    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);
}

.hover_tall_8959 .aside_3c1c {
    font-size: 1.25rem;
}

.hover_tall_8959 .right-6151 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.hot-f80f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.breadcrumb_fixed_e5d1 {
    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);
}

.breadcrumb_fixed_e5d1 .input_black_2211 {
    font-size: 2rem;
    flex-shrink: 0;
}

.breadcrumb_fixed_e5d1 .carousel_liquid_ea20 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.breadcrumb_fixed_e5d1 .hover-wood-8ff3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.layout_soft_b6eb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.background_c23d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.background_c23d .white_2c67 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.background_c23d .nav_f059 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tertiary-large-9713 {
    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);
}

.section-hovered-89b9 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .section-hovered-89b9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.cool_c7db {
    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);
}

.cool_c7db:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.bottom_14f9 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.basic_9780 {
    flex: 1;
}

.detail_pressed_c77f {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.list_7100 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.heading_0397 {
    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);
}

.heading_0397:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.pressed-bf20 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pressed-bf20 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.column_c006 {
    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);
}

.column_c006:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.heading-599e {
    font-size: 2rem;
    flex-shrink: 0;
}

.hard_707a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.accordion-7663 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.shadow-7f03 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.fresh_8d79 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.video-glass-6a4d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.form-f72a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.form-f72a .tabs_warm_ed32 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.form-f72a .popup-33b7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.label-959e {
    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);
}

.hard-4261 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.breadcrumb_light_4512 {
    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);
}

.breadcrumb_light_4512 .input_black_2211 {
    font-size: 2rem;
    flex-shrink: 0;
}

.breadcrumb_light_4512 .carousel_liquid_ea20 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.breadcrumb_light_4512 .hover-wood-8ff3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.widget_4f62 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .widget_4f62 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.iron_539a {
    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);
}

.iron_539a:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.notice_paper_62f0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .notice_paper_62f0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.clean-ca98 {
    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);
}

.clean-ca98:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.status-8a95 {
    font-size: 2rem;
    flex-shrink: 0;
}

.rough_5787 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.up_cddd {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.filter-75ed {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.article-warm-2a57 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.list_motion_5033 {
    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);
}

.list_motion_5033:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.row-db10 {
    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);
}

.fluid_66a5 {
    flex: 1;
}

.background-liquid-cec8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.chip_bac3 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.smooth_2c46 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hover-old-37e2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.slow_ba76 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.slow_ba76 .white_2c67 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.slow_ba76 .nav_f059 {
    color: var(--text-gray);
    line-height: 1.6;
}

.pro-ddac {
    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);
}

.info_warm_4138 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .info_warm_4138 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.carousel-d003 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .carousel-d003 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.link-dynamic-4730 {
    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);
}

.link-dynamic-4730:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tertiary-072d {
    font-size: 2rem;
    flex-shrink: 0;
}

.small_c6e9 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.north_314f {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.focused-c52c {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.progress-simple-b555 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.banner_bottom_af03 {
    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);
}

.wrapper_4449 {
    font-size: 2rem;
    flex-shrink: 0;
}

.gallery-small-9752 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.status_1a14 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hard-4261 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.breadcrumb_light_4512 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.breadcrumb_light_4512 .carousel_liquid_ea20 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.breadcrumb_light_4512 .hover-wood-8ff3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.component-a7ae {
    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);
}

.badge_narrow_fd87 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .badge_narrow_fd87 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .badge_narrow_fd87 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.text-right-7899 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.text-right-7899:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.container_complex_4284 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.small-1bb8 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.tag-9c9b {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.full_c478 {
    padding: 1.5rem;
}

.gradient-6476 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.gallery_slow_59d9 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gallery_slow_59d9 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;
}

.gallery_slow_59d9 li:last-child {
    border-bottom: none;
}

.gallery_slow_59d9 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.detail_ed13 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .detail_ed13 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.top_0d8d {
    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);
}

.top_0d8d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.black_5b65 {
    font-size: 2rem;
    flex-shrink: 0;
}

.left_e2e0 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.module-under-ee1f {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.current_81a6 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.tabs_2156 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.overlay-70ce {
    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);
}

.first-b560 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tall-43ff {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.row-612d {
    color: var(--text-gray);
    line-height: 1.6;
}

.slow_0da1 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.text-797f {
    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);
}

.feature_534d {
    text-align: center;
}

.action-8e67 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.out_ceb5 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.icon_16bb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.paragraph_7236 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.paragraph_7236 .carousel_liquid_ea20 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.paragraph_7236 .hover-wood-8ff3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.disabled-6ef0 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .disabled-6ef0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .disabled-6ef0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-middle-65ca {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.gallery-middle-65ca:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tall-375f {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.status-086b {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.carousel_liquid_ea20 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.button_simple_fe55 {
    padding: 1.5rem;
}

.hover-wood-8ff3 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.middle_d535 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.middle_d535 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;
}

.middle_d535 li:last-child {
    border-bottom: none;
}

.middle_d535 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.sidebar_full_9c26 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.sidebar-9229 {
    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);
}

.sidebar-9229:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.medium-8727 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hard-6d8a {
    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);
}

.modal-basic-8aa5 {
    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;
}

.clean_cf90 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.gallery_center_8c1b {
    color: var(--text-gray);
    line-height: 1.6;
}

.complex_036f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.steel-66c3 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.button_a832 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.label-1ea4 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.grid-7dba {
    display: flex;
    gap: 1rem;
}

.grid-7dba .brown_fc5c {
    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;
}

.cool-d748 {
    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);
}

.static-a634 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.wrapper_ce1a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wrapper_ce1a 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;
}

.wrapper_ce1a li:last-child {
    border-bottom: none;
}

.wrapper_ce1a li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.paragraph-fc0a {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .paragraph-fc0a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .paragraph-fc0a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.banner-warm-3a4c {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.banner-warm-3a4c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.purple_44c3 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.article_light_a425 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.tabs_warm_ed32 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.modal_d656 {
    font-size: 1rem;
}

.pro_9928 {
    padding: 1.5rem;
}

.popup-33b7 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.focus-west-3892 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.focus-west-3892 .feature_534d {
    text-align: center;
}

.focus-west-3892 .out_ceb5 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.focus-west-3892 .iron-65f2 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.sidebar_62b8 {
    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);
}

.sidebar_62b8:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.mask-complex-1f50 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .mask-complex-1f50 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.focus-f616 {
    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);
}

.focus-f616:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tall_990b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dropdown-wide-aa71 {
    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_6f16 {
    font-size: 2rem;
    flex-shrink: 0;
}

.outline-8711 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.brown-c71a {
    color: var(--text-gray);
    line-height: 1.6;
}

.wrapper-huge-ae17 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.sort_cd9d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.top-d193 {
    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);
}

.container-a4df {
    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;
}

.container-a4df.picture_pink_f3c2 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.container-a4df.border-focused-ecbc {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.container-a4df.image_118f {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.container-a4df.gallery-0295 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.container-a4df.hidden_0d41 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.layout-warm-d3d3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.section-419a {
    color: var(--text-gray);
    line-height: 1.6;
}

.middle-cab4 {
    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);
}

.wrapper_a67c {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.layout_soft_b6eb {
    list-style: none;
    padding: 0;
    margin: 0;
}

.layout_soft_b6eb 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;
}

.layout_soft_b6eb li:last-child {
    border-bottom: none;
}

.layout_soft_b6eb li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.footer_cff2 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .footer_cff2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer_cff2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.active-6508 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.active-6508:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.active-6508.nav_b255 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .active-6508.nav_b255 {
        grid-column: span 3;
    }
}

.item_fast_835a {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.active-6508.nav_b255 .item_fast_835a {
    background: rgba(6, 182, 212, 0.1);
}

.picture_6e41 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.hover-new-7a93 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.active-6508.nav_b255 .hover-new-7a93 {
    color: var(--info-color);
}

.main_c506 {
    padding: 1.5rem;
    text-align: center;
}

.short_56bc {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.active-6508.nav_b255 .short_56bc {
    color: var(--info-color);
}

.notice_c439 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.full-39b2 {
    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 */
.picture_fd34 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .picture_fd34 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.paragraph-d553 {
    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);
}

.paragraph-d553:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.grid-8093 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.breadcrumb_fixed_e5d1 {
    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);
}

.aside_3c1c {
    font-size: 2rem;
    flex-shrink: 0;
}

.stone-913c {
    flex: 1;
}

.purple-fad5 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.disabled-middle-71fc {
    color: var(--text-gray);
    line-height: 1.6;
}

.form_new_60dd {
    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);
}

.title-hard-2a11 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.notification-b46c {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.dropdown-11ee {
    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);
}

.status_dirty_7f2e {
  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);
}

.status_dirty_7f2e .feature_534d {
    text-align: center;
}

.status_dirty_7f2e .action-8e67 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.status_dirty_7f2e .out_ceb5 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.new_4a2d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tooltip-easy-d559 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.current-9a53 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hard_9596 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hover_32b1 {
    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);
}

.block-purple-4583 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.action-b9d5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hot-b50a {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .hot-b50a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hot-b50a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.list-dirty-0d81 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.list-dirty-0d81:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.action-ec12 {
    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);
}

.action_becc {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.sidebar_new_ff35 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.surface_red_76e4 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.surface_red_76e4.secondary_076a {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.surface_red_76e4.green_90d8 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.surface_red_76e4.description-c37f {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.shadow-4613 {
    padding: 1.5rem;
    text-align: center;
}

.shade_a572 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.shade_left_058d {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.shade_left_058d .up_949d {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.dropdown_7c87 {
    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);
}

.dropdown_7c87:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.glass_2402 {
  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);
}

.preview_29d8 {
    text-align: center;
}

.preview_29d8 .action-8e67 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.preview_29d8 .out_ceb5 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.accent-01e4 { text-align: center; }
.mask_69bf { text-align: left; }
.video_blue_02bb { text-align: right; }

.tag-7a6e { margin-bottom: 0; }
.widget-a202 { margin-bottom: 0.5rem; }
.in-7198 { margin-bottom: 1rem; }
.row-left-6421 { margin-bottom: 1.5rem; }
.gradient-soft-3eee { margin-bottom: 2rem; }

.description_b64c { margin-top: 0; }
.slider_d568 { margin-top: 0.5rem; }
.active_f485 { margin-top: 1rem; }
.picture_fast_e427 { margin-top: 1.5rem; }
.shade-364a { margin-top: 2rem; }

.fn-hidden-3f01 { display: none; }
.fn-visible-3f01 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .card-brown-7d10 {
        padding: 6rem 0 3rem;
    }
    
    .video_8168 {
        text-align: center;
    }
    
    .container-clean-a971 {
        text-align: center;
    }
    
    .rough_9488 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .new-e1de,
    .small-7e47,
    .paper-a6fb,
    .list_8064 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .card-brown-7d10 {
        background: none;
    }
}

/* Providers Section */
.notice_9576 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.warm_6af4 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .warm_6af4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .warm_6af4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.grid-huge-f397 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.grid-huge-f397:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.detail-6689 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.hot_de35 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.summary_over_a9ff {
    list-style: none;
    padding: 0;
}

.summary_over_a9ff li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.summary_over_a9ff li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.active-e00d {
    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);
}

.active-e00d p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.new-ac33 {
    padding: var(--section-padding);
}

.surface-north-6a57 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .surface-north-6a57 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.overlay-glass-b9e0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.overlay-glass-b9e0:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.backdrop-a442 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.green_f8e7 {
    display: flex;
    flex-direction: column;
}

.block-c2f6 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.tooltip_hard_34ec {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.medium-7a0c {
    color: var(--accent-color);
}

.main-under-9a11 {
    font-size: 1.25rem;
}

.backdrop_2ed3 {
    margin-bottom: 1rem;
}

.backdrop_2ed3 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.caption_e4c7 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.small-45eb {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.feature_534d {
    text-align: center;
}

.action-8e67 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.out_ceb5 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.detail_smooth_cf53 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.summary_rough_20a7 {
    margin: 2rem 0;
}

.photo-f862 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.photo-f862 .input_black_2211 {
    font-size: 2rem;
    flex-shrink: 0;
}

.layout_f803 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.paragraph_current_58b0 {
    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;
}

.paragraph_current_58b0:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.progress_514c {
    font-size: 2rem;
}

.hero-prev-a2de {
    display: flex;
    flex-direction: column;
}

.input-motion-c048 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.narrow_d8d0 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.form_silver_cb1c {
    padding: var(--section-padding);
}

.panel-down-be6a {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .panel-down-be6a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .panel-down-be6a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.black-8979 {
    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);
}

.black-8979:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.black-8979 .action-8e67 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.black-8979 .out_ceb5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.black-8979 .focused-f604 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.component_prev_422b {
    margin-top: 4rem;
}

.pink-fa3c {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.glass-80ab {
    overflow-x: auto;
}

.wrapper-21f9 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.wrapper-21f9 thead {
    background: var(--accent-color);
}

.wrapper-21f9 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.wrapper-21f9 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.wrapper-21f9 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.wrapper-21f9 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.mask-f69f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.wrapper-0fe6 {
    max-width: 900px;
    margin: 0 auto;
}

.nav-east-93fd {
    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);
}

.nav-east-93fd:hover {
    border-color: var(--accent-color);
}

.image_fa68 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.image_fa68 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.hot_b39e {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.nav-east-93fd.fn-active-3f01 .hot_b39e {
    transform: rotate(45deg);
}

.container-small-5223 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.nav-east-93fd.fn-active-3f01 .container-small-5223 {
    max-height: 1000px;
}

.container-small-5223 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.iron-87d1 {
    padding: var(--section-padding);
}

.focus_dark_3dc9 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.top-2d5b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.iron_684a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .iron_684a {
        grid-template-columns: repeat(2, 1fr);
    }
}

.last_12c1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.video_472c {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tiny-3f19 {
    font-size: 2rem;
}

.dark-473a {
    color: var(--text-white);
    margin: 0;
}

.medium_82c2 {
    list-style: none;
    padding: 0;
}

.medium_82c2 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.medium_82c2 li:last-child {
    border-bottom: none;
}

.active_124f {
    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);
}

.active_124f p {
    color: var(--success-color);
    margin: 0;
}

.bottom-a5a9 {
    margin-top: 3rem;
}

.static-a634 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.heading-dark-f4dd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .heading-dark-f4dd {
        grid-template-columns: repeat(2, 1fr);
    }
}

.nav_clean_45e1 {
    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);
}

.detail-center-f0f1 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.nav_clean_45e1 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.modal-plasma-c276 {
    padding: var(--section-padding);
}

.over-fddf {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .over-fddf {
        grid-template-columns: repeat(3, 1fr);
    }
}

.status-3bc3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.status-3bc3:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.nav-3870 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.prev_ddce {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.sort-old-30d5 {
    flex: 1;
}

.gallery_4553 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.hover-0139 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.upper_9388 {
    color: var(--text-gray);
    line-height: 1.6;
}

.active-5721 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.active-5721:last-child {
    border-bottom: none;
}

/* Comparison Section */
.basic_5a69 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.shadow_255e {
    padding: var(--section-padding);
}

.image_5443 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.item-clean-04c7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .item-clean-04c7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.input-middle-7367 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tabs_hovered_0927, .thumbnail_1828, .fixed_ceea {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.fixed_ceea {
    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 */
.link_b5c9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.list-advanced-8fb9 {
    margin: 2rem 0;
}

.logo_full_77e1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.progress-plasma-ad8e {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.chip_north_876f {
    list-style: none;
    padding: 0;
}

.chip_north_876f 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;
}

.chip_north_876f li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.chip_north_876f li:last-child {
    border-bottom: none;
}

.element-narrow-1ae7 {
    text-align: center;
    margin-top: 2rem;
}

.frame_liquid_7158 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.text-0cb0 {
    padding: var(--section-padding);
}

.image-f870 {
    margin: 2rem 0;
}

.item-down-df05 {
    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) {
    .item-down-df05 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.item-down-df05:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.gas-3674 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.avatar_glass_9f08 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.icon-hovered-91bd {
    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;
}

.notification-3866 {
    flex: 1;
}

.main_static_c50e {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.mini-47fb {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.layout_smooth_6c00 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.sidebar_warm_b352 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .sidebar_warm_b352 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.content-d7ce {
    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);
}

.content-d7ce:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.content-d7ce .action-8e67 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.content-d7ce .out_ceb5 {
    color: var(--text-gray);
    font-size: 1rem;
}

.small_5b00 {
    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);
}

.aside-slow-ed6b {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.aside-slow-ed6b strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.avatar_2acd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .avatar_2acd {
        grid-template-columns: 1fr 1fr;
    }
}

.paper-6cf3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.element_plasma_b0e3 {
    margin-bottom: 1.5rem;
}

.element_plasma_b0e3 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.element_plasma_b0e3 input,
.element_plasma_b0e3 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;
}

.element_plasma_b0e3 input:focus,
.element_plasma_b0e3 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.old_b33a {
    width: 100%;
    margin-top: 1rem;
}

.white_53c1 {
    display: flex;
    align-items: center;
}

.preview-d0fd {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.carousel_5206 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.pressed-9b97 {
    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;
}

.cold-65a4 {
    color: var(--text-gray);
}

.widget-3580 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.component_upper_9af4 {
    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);
}

.component_upper_9af4 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.feature-prev-76fe {
    margin-top: 3rem;
}

.advanced_6a56 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.east-9fed {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.shadow-2b06 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.background-smooth-5eea {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.background-smooth-5eea:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.tooltip-ac9c {
    padding: var(--section-padding);
}

.main_eb80 {
    margin: 2rem 0;
}

.pattern-dirty-5a65 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.static_d9f0 {
    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;
}

.static_d9f0:hover, .static_d9f0.fn-active-3f01 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.easy_1877 {
    display: none;
}

.easy_1877.fn-active-3f01 {
    display: block;
}

.banner-bbfe {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.prev_1787 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.outline-east-1dec h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.outline-east-1dec ul {
    list-style: none;
    padding: 0;
}

.outline-east-1dec ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.outline-east-1dec ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.hidden-fast-fdb0 {
    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 */
.next_6920 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.plasma-c116 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.block_hard_6ecc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.grid_ef43 {
    color: var(--accent-color);
    margin: 0;
}

.red_ab3e {
    display: flex;
    gap: 1.5rem;
}

.carousel-out-bf52 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.picture_thick_6594 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.purple_ce32 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.purple_ce32.main_gas_fb08 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.purple_ce32.status-ba75 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.purple_ce32.wide_0d60 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.green-a4b1 {
    margin-top: 2rem;
}

.grid_lite_896e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.main-fixed-58d1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .main-fixed-58d1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.badge_dynamic_284a {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.heading-bottom-50c1 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.over_344b {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.mini-3289 {
    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 */
.mini-5ec6 {
    padding: var(--section-padding);
}

.heading-out-05a8 {
    margin: 2rem 0;
}

.copper_81c9 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.border_in_4da5 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.short_9441 {
    list-style: none;
    padding: 0;
}

.short_9441 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;
}

.short_9441 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.short_9441 li:last-child {
    border-bottom: none;
}

.caption_lower_d400 {
    margin: 2rem 0;
}

.gradient-over-7ca5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.item_middle_e237 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .item_middle_e237 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.blue_4283 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hero-bright-0cd4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.badge_1948 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.form-ff35 {
    margin-top: 2rem;
}

.detail_pressed_c77f {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.texture_stone_ad41 {
    list-style: none;
    padding: 0;
}

.gas-d168 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.gas-d168 a {
    color: var(--accent-color);
    text-decoration: none;
}

.gas-d168 a:hover {
    text-decoration: underline;
}

.bright_b036 {
    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 */
.blue-2f43 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.thumbnail_a771 {
    margin: 2rem 0;
}

.active_9fd4 {
    margin-bottom: 3rem;
}

.active_9fd4 .progress-plasma-ad8e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.outline-wide-05ac {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.link_action_a3ed {
    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);
}

.link_action_a3ed:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.hard_0c18 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .hard_0c18 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.action-6349 {
    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 */
.steel-8548 {
    padding: var(--section-padding);
}

.green_fccd {
    margin: 2rem 0;
}

.mask_55d4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.article-4805 {
    overflow-x: auto;
    margin: 2rem 0;
}

.purple_9d2c {
    background: rgba(6, 182, 212, 0.1) !important;
}

.main_ebcd {
    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;
}

.card_5f2e {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.new-861d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .new-861d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.component-2496 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.component-2496 .input_black_2211 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.component-2496 .carousel_liquid_ea20 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.section-6c97 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.fluid_835f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.form_clean_14ed {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .form_clean_14ed {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gradient_white_0162 {
    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;
}

.gradient_white_0162:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.main-out-9215 {
    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);
}

.outline_d9f8 {
    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;
}

.overlay_short_9994 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.gradient-9503 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.up-63f6 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.copper-40c6 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.form-5d46 {
    color: var(--text-white);
    font-weight: 600;
}

.east-fbae {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.thumbnail_8f7e {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.thumbnail_8f7e .brown_fc5c {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.message_018a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .message_018a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.info_df7e {
    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);
}

.info_df7e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.info_df7e .action-8e67 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.info_df7e .out_ceb5 {
    color: var(--text-gray);
    font-size: 1rem;
}

.container_18d0 {
    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);
}

.border_cold_d58c {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.border_cold_d58c strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.progress-simple-b555 {
    margin: 2rem 0;
}

.banner_bottom_af03 {
    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);
}

.banner_bottom_af03:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.wrapper_4449 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.thumbnail_69e3 {
    flex: 1;
}

.gallery-small-9752 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.status_1a14 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.hard-4261 {
    margin: 2rem 0;
}

.breadcrumb_light_4512 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.breadcrumb_light_4512 .carousel_liquid_ea20 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.breadcrumb_light_4512 .hover-wood-8ff3 {
    color: var(--text-gray);
    margin: 0;
}

.component-a7ae {
    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-a7ae .panel_ba7c {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.section-6c97 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.row-db10 {
    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;
}

.fluid_66a5 {
    flex: 1;
}

.chip_bac3 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.smooth_2c46 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.modal-basic-8aa5 {
    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;
}

.column-38c7 {
    flex: 1;
}

.clean_cf90 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.gallery_center_8c1b {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.button_a832 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.label-1ea4 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.grid-7dba {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.grid-7dba .brown_fc5c {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.cool-d748 {
    margin-top: 2rem;
}

.cool-d748 .static-a634 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.title-active-badf {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.text-797f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .text-797f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.text-797f .feature_534d {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.icon_16bb {
    margin: 2rem 0;
}

.paragraph_7236 {
    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 */
.icon-f8b6 {
    padding: var(--section-padding);
}

.button_simple_fe55 {
    margin-top: 1rem;
}

.middle_d535 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.middle_d535 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.middle_d535 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.column_active_526f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.short-ead7 {
    margin: 2rem 0;
}

.info-34ae {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.chip_dim_eea9 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.caption-b79c {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.row-action-a3a4 {
    margin: 2rem 0;
}

.east_2e77 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.east_2e77 .progress-plasma-ad8e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.motion-cac9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .motion-cac9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.status_2074 {
    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);
}

.form_35e1 {
    color: var(--text-white);
    font-weight: 600;
}

.smooth_8a5b {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.complex-d761 {
    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);
}

.complex-d761 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.thick_c78a {
    padding: var(--section-padding);
}

.old_9154 {
    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;
}

.old_9154:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.preview-green-41b8 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-green-41b8 .detail-center-f0f1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.preview-green-41b8 .black-5425 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.form-thick-8cf8 {
    flex: 1;
}

.bottom_dac0 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.outline_f52e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.outline_f52e li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.outline_f52e li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.widget-f7bf {
    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);
}

.widget-f7bf p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.widget-f7bf strong {
    color: var(--warning-color);
}

/* Slots Section */
.alert-e163 {
    padding: var(--section-padding);
}

.fresh_8d79 {
    margin: 2rem 0;
}

/* Table Games Section */
.panel_hard_2b66 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.video-glass-6a4d {
    margin: 2rem 0;
}

.form-f72a {
    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);
}

.form-f72a:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.form-f72a .tabs_warm_ed32 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.form-f72a .popup-33b7 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.label-959e {
    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);
}

.label-959e .panel_ba7c {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.in_1cd6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.container_over_fd35 {
    margin: 2rem 0;
}

.fast_bafc {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.main_orange_1d9f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hard_f991 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.over-1486 {
    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);
}

.over-1486:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.over-1486.fn-active-3f01 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hero_1597 {
    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);
}

.action_44cc {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.action_44cc strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.main_gas_3537 {
    padding: var(--section-padding);
}

.thick-9362 {
    margin: 2rem 0;
}

.simple-a694 {
    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);
}

.simple-a694:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .simple-a694 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.brown_1724 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.menu-032d {
    flex: 1;
}

.primary-a054 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.column_cold_0b65 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.complex-990f {
    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;
}

.footer-2de1 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.info_640d {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.backdrop-blue-6d02 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.motion_6b62 {
    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;
}

.motion_6b62:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.overlay_1732 {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.header-solid-7134 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.header-solid-7134 strong {
    color: var(--accent-color);
}

/* New Games Section */
.avatar_f83e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.simple_67c2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .simple_67c2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .simple_67c2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.video-silver-0ae7 {
    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;
}

.video-silver-0ae7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.chip_stale_f934 {
    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;
}

.chip-last-b43e {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.module_steel_d49b {
    font-size: 2rem;
}

.dim_0792 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.frame-large-28a0 {
    flex: 1;
}

.layout-97a6 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.caption_4189 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.focused_2b08 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.module-131c {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.input-west-35c7 {
    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;
}

.short_7cf6 {
    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;
}

.short_7cf6:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.row-right-6492 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.mini-6453 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.frame_wood_90f1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .frame_wood_90f1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tall-a9cc {
    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);
}

.module-under-fd28 {
    color: var(--text-white);
    font-weight: 600;
}

.primary-5354 {
    color: var(--accent-color);
    font-weight: 600;
}

.info-c9b6 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.info-c9b6 strong {
    color: var(--accent-color);
}

/* Security Section */
.north-c914 {
    padding: var(--section-padding);
}

/* Benefits Section */
.heading-wide-182b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.logo-0a22 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.frame_24ef {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dirty-3f4d {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.disabled-97cd {
    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) {
    .disabled-97cd {
        flex-direction: column;
        gap: 1rem;
    }
}

.disabled-97cd:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.disabled-97cd .modal-basic-8aa5 {
    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;
}

.disabled-97cd .column-38c7 {
    flex: 1;
}

.disabled-97cd .clean_cf90 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.disabled-97cd .gallery_center_8c1b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.disabled-088e {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.disabled-088e .purple-fad5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.disabled-088e .hot-f80f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.disabled-088e .hot-f80f li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.disabled-088e .hot-f80f li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.static_43da {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.badge_247c {
    padding: var(--section-padding);
}

.dropdown_17dd {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .dropdown_17dd {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wood_562e {
    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);
}

.wood_562e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.wood_562e .mask_middle_8554 {
    font-size: 2rem;
    flex-shrink: 0;
}

.wood_562e .solid-1001 {
    flex: 1;
}

.wood_562e .white_2c67 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.wood_562e .row-c2ec {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.notification-357d {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.notification-357d .next_348a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.notification-357d .dynamic_97ee {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.notification-357d .dynamic_97ee 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);
}

.notification-357d .dynamic_97ee li:last-child {
    border-bottom: none;
}

.notification-357d .dynamic_97ee 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;
}

.notification-357d .dynamic_97ee li strong {
    color: var(--text-white);
}

.chip_1e34 {
    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);
}

.chip_1e34 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.chip_1e34 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.gallery-3023 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.sidebar_orange_b272 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .sidebar_orange_b272 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.border-f2e3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.border-f2e3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.static-c131 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.container-0bee {
    font-size: 2rem;
}

.widget-03f2 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.box-huge-f132 {
    flex: 1;
}

.current-9a11 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.current-9a11 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.current-9a11 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.message_f0c2 {
    margin-top: 3rem;
}

.copper_81c9 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.border_in_4da5 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.short_9441 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.short_9441 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.short_9441 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.short_9441 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.steel_c213 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.short_d3c6 {
    margin: 2rem 0;
}

.article_dim_8f0e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.article_dim_8f0e .progress-plasma-ad8e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.breadcrumb_45d4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .breadcrumb_45d4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hidden-1719 {
    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);
}

.hidden-1719:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.paragraph_7f76 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.grid-prev-c66b {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.photo-c4ff {
    padding: var(--section-padding);
}

.photo-d0c4 {
    margin: 2rem 0;
}

.dropdown-c751 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .dropdown-c751 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .dropdown-c751 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.complex-a0b1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.complex-a0b1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.container-motion-3065 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.tall_85e7 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.purple_3211 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.purple_3211.highlight-green-2744 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.avatar-4252 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.texture-right-c491 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.badge_7bdb {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.widget-top-52d7 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.dirty_d668 {
    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);
}

.dirty_d668 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.dirty_d668 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.secondary-current-3a28 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.prev-84dd {
    margin: 2rem 0;
}

.green_23fb {
    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) {
    .green_23fb {
        flex-direction: column;
        gap: 1rem;
    }
}

.green_23fb:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.green_23fb::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);
}

.highlight-4d86 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.right_e465 {
    flex: 1;
}

.block_56e1 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.tag_yellow_3130 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tag_yellow_3130 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.wrapper_narrow_1289 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.texture_3232 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.message_fb7c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .message_fb7c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.item_tall_b75b {
    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);
}

.pagination-prev-90d8 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.hard_04b5 {
    flex: 1;
}

.small-402e {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.text_69ba {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.shade-light-97ad {
    margin-top: 2rem;
    text-align: center;
}

.pattern_dbcb {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.pattern_dbcb strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.mask-complex-1f50 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .mask-complex-1f50 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.focus-f616 {
    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);
}

.focus-f616:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.focus-f616 .black_5b65 {
    font-size: 2rem;
    flex-shrink: 0;
}

.focus-f616 .left_e2e0 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.focus-f616 .module-under-ee1f {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.focus-f616 .current_81a6 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.plasma-cc77 {
    padding: var(--section-padding);
}

.dropdown-wide-aa71 .new-088e {
    flex: 1;
}

/* Promo Calendar Section */
.info_light_6470 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.footer_1768 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .footer_1768 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.box-f3e2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.backdrop-huge-e71c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.wood-1553 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.heading-complex-6d8e {
    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);
}

.hard-fb3a {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.column-684e {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.pressed-ea95 {
    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);
}

.pressed-ea95 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.pressed-ea95 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.top_7427 {
    padding: var(--section-padding);
}

.main-1119 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .main-1119 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.article-5a12 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.cool-cd66 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.bronze-6676 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bronze-6676 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.button_dim_cc05 {
    margin-top: 3rem;
}

.button_dim_cc05 .copper_81c9 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.button_dim_cc05 .border_in_4da5 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.button_dim_cc05 .short_9441 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.button_dim_cc05 .short_9441 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.button_dim_cc05 .short_9441 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.button_dim_cc05 .short_9441 li strong {
    color: var(--warning-color);
}

.text_focused_2412 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.text_focused_2412 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.tiny-530a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dirty-3cb3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dirty-3cb3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.top_20d5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.top_20d5 .progress-plasma-ad8e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.description-496b {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-short-2fa7 {
    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);
}

.sidebar-short-2fa7:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.first_7134 {
    font-size: 2rem;
    flex-shrink: 0;
}

.content_dirty_b847 {
    flex: 1;
}

.content_inner_6cd8 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.gradient_588d {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.nav_bronze_038a {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.popup-down-08a5 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.picture-dark-e83c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .picture-dark-e83c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.west_4de7 {
    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);
}

.west_4de7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.footer_67da {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.photo-hard-0c86 {
    color: var(--text-gray);
    font-size: 1rem;
}

.aside-slow-ed6b {
    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);
}

.narrow-5b4e {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.narrow-5b4e strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.north_c0db { 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; }
.notice_lite_eb94, .frame-652c { max-width:100%; height:auto; }

.under_b4ca, .background-next-619f, .focus-medium-39af { white-space:normal; }

.video_8168,
.container-clean-a971,
.picture_fd34,
.mask-complex-1f50,
.hard-4261,
.hot-b50a {
  flex-wrap:wrap;
}

[class*="grid"],
.picture-dark-e83c,
.dropdown-c751,
.cold_c2ea {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.card-brown-7d10 img,
.container-clean-a971 img,
.pattern-smooth-32b1 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.form-short-a835, .over_18b2,
.sidebar-107a, .table_hovered_da7a {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.glass-80ab { width:100%; overflow-x:auto; }
.glass-80ab table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.warm_6af4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .warm_6af4 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.grid-huge-f397 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.panel-down-be6a,
.pro-c3aa,
.grid_basic_282c,
.inner_3825,
.sidebar_warm_b352,
.picture-dark-e83c,
.dropdown-c751,
.cold_c2ea,
.glass_2402,
.thick-9362,
.warm_6af4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .panel-down-be6a,
  .pro-c3aa,
  .grid_basic_282c,
  .inner_3825,
  .sidebar_warm_b352,
  .picture-dark-e83c,
  .dropdown-c751,
  .cold_c2ea,
  .glass_2402,
  .thick-9362,
  .warm_6af4 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.black-8979,
.content-d7ce,
.west_4de7,
.fixed-a3c8,
.complex-a0b1,
.preview_29d8,
.simple-a694,
.grid-huge-f397 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.text-white-cc3b,
.header_solid_53b5,
.content-f4e5 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.text-white-cc3b > *,
.header_solid_53b5 > *,
.content-f4e5 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: e950 */
.promo-block-x7 {
  padding: 0.5rem;
  font-size: 13px;
  line-height: 1.3;
}
