/* {$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;
}

.in_f1f0 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.hover-a28a {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .hover-a28a {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hover-a28a {
        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 */
.texture-cool-c626 {
    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);
}

.alert_static_7df1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .alert_static_7df1 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .copper_4a22 {
        grid-column: 1;
    }
    
    .search_old_fe2a {
        grid-column: 2;
    }
    
    .action-0371 {
        grid-column: 3;
    }
}

.copper_4a22 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.copper_4a22:hover img {
    transform: scale(1.05);
}

/* Navigation */
.summary_2c7e {
    display: none;
}

@media (min-width: 1024px) {
    .summary_2c7e {
        display: block;
    }
}

/* Grouped Navigation */
.medium-3fa7 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.highlight-fluid-63c0 {
    position: relative;
}

.hero-c1f3 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.highlight-fluid-63c0 .panel-paper-5bf8 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.panel-paper-5bf8 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.alert_bottom_e8ee {
    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;
}

.alert_bottom_e8ee:hover,
.alert_bottom_e8ee.fn-active-b10c {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.breadcrumb_945a {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .breadcrumb_945a {
        display: flex;
    }
}

/* Mobile Register Button */
.search_old_fe2a {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .search_old_fe2a {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.tabs_b49d {
    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;
}

.tabs_b49d::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 */
.action-0371 {
    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) {
    .action-0371 {
        display: none;
    }
}

.action-0371 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.action-0371.fn-active-b10c span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.action-0371.fn-active-b10c span:nth-child(2) {
    opacity: 0;
}

.action-0371.fn-active-b10c span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.gold-ea49 {
    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;
}

.gold-ea49.fn-active-b10c {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.preview-iron-f15a {
    overflow: hidden;
}

.stone-e0a8 {
    list-style: none;
    padding: 0.75rem 0;
}

.item-e6f2 {
    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;
}

.item-e6f2:hover,
.item-e6f2.fn-active-b10c {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.item-e6f2.wide-0804 {
    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;
}

.item-e6f2.wide-0804::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 */
.nav-red-b327 {
    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;
}

.white_da8e {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.white_da8e:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.wood_812b {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.wood_812b:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.west-66b9 {
    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;
}

.west-66b9:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.notice-addf {
    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;
}

.banner-gas-3276 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.banner-gas-3276:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.icon_fluid_c1fc {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.icon_fluid_c1fc:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.text_action_7456 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.text_action_7456: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);
}

.message_e1f0 {
    font-size: 1em;
    font-weight: 700;
}

.box_9b16 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.warm-f7d0 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.warm-f7d0::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;
}

.iron-2ed0 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .iron-2ed0 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.motion-77b4 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.dark-d768 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.menu_basic_40aa {
    margin-bottom: 2rem;
}

.green_4eb8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .green_4eb8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.module-selected-b7a7 {
    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);
}

.widget-ffcc {
    font-size: 1.5rem;
}

.status-3cf5 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.warm-a734 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.surface-da98 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.surface-da98:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.aside_7024 {
    text-align: center;
    margin-bottom: 3rem;
}

.detail_f7dd {
    margin-bottom: 1rem;
}

.thumbnail-bf5b {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.inner-b911 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .inner-b911 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .inner-b911.title-soft-c778 {
        direction: rtl;
    }
    
    .inner-b911.title-soft-c778 > * {
        direction: ltr;
    }
}

.thick_cf81 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.thick_cf81:first-child {
    margin-top: 0;
}

.current-88eb {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.link-wood-926c {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.link-wood-926c:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.column_d5b9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .column_d5b9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gradient_c986 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.shadow_b058 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.paragraph_44f2 {
    list-style: none;
}

.paragraph_44f2 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.paragraph_44f2 li:last-child {
    border-bottom: none;
}

/* Games Features */
.component-west-fa5c {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.layout-easy-a5c6 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.nav_warm_4608 {
    font-size: 2rem;
    flex-shrink: 0;
}

.mask-medium-7a3c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.fresh-5769 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.icon-over-f835 {
    margin: 2rem 0;
}

.message-up-0e1f {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.left_f363 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.center-c81d {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.picture_62d7 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.first-41f3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .first-41f3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.component-2dba {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.component-2dba:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.carousel-right-1e23 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.outline-small-1f0d {
    font-size: 1.5rem;
}

.heading_ad50 {
    color: var(--accent-color);
    margin: 0;
}

.aside_soft_baef {
    list-style: none;
}

.aside_soft_baef li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.aside_soft_baef li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.detail_current_7cc7 {
    margin: 2rem 0;
}

.stale_5bc4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.tertiary_edab {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .tertiary_edab {
        grid-template-columns: repeat(4, 1fr);
    }
}

.title_7f38 {
    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);
}

.panel_west_06a9 {
    font-size: 1.25rem;
}

.aside-496d {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.simple-8729,
.iron-c1b9 {
    text-align: center;
    margin: 2rem 0;
}

.feature-new-013f,
.upper-3447 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.medium-eeee {
    margin: 2rem 0;
    text-align: center;
}

.thumbnail-under-f466 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.thumbnail-under-f466::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;
}

.sort-bright-f1d0 {
    position: relative;
    z-index: 1;
}

.header-3508 {
    margin-bottom: 1rem;
}

.media-new-7c53 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.surface_stone_6e00 {
    margin-bottom: 3rem;
}

.white-cfa1 {
    margin-top: 3rem;
}

.description_large_06d7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .description_large_06d7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.description_large_06d7 .module-selected-b7a7 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.hero_prev_24bc {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.pattern_static_7fdf {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.accent-advanced-5fa5 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.liquid-aca0 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .liquid-aca0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .liquid-aca0 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.shade-upper-cf31 {
    margin-bottom: 1rem;
}

.shade_mini_1f51 img {
    margin-bottom: 1rem;
}

.nav_hard_608b {
    color: var(--text-gray);
    line-height: 1.6;
}

.banner_dynamic_5ce1 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.hidden-54f2 {
    list-style: none;
}

.hidden-54f2 li {
    margin-bottom: 0.5rem;
}

.hidden-54f2 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.hidden-54f2 a:hover {
    color: var(--accent-color);
}

.tabs-out-fb66 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.light_7666 {
    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);
}

.light_7666:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.surface-fluid-a81a {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.surface-fluid-a81a p {
    margin-bottom: 0.25rem;
}

.top-3ea6 {
    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) {
    .top-3ea6 {
        flex-direction: row;
    }
}

.yellow_43ca {
    text-align: center;
}

@media (min-width: 768px) {
    .yellow_43ca {
        text-align: left;
    }
}

.yellow_43ca p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.hovered_b44b {
    font-size: 0.75rem !important;
}

.label-dff3 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.slow_9ced {
    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);
    }
}

.easy-307f {
    animation: fadeInUp 0.6s ease-out;
}

.secondary-78bd {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.wood_8152 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .wood_8152 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.last-79ca {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .last-79ca {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hero_green_b188 {
    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_green_b188 .nav_warm_4608 {
    font-size: 1.25rem;
}

.hero_green_b188 .surface-d28e {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.filter_outer_e61e {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .filter_outer_e61e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.alert-b620 {
    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);
}

.alert-b620:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.menu-hard-36ec {
    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);
}

.breadcrumb_first_7a8b {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.summary-0e54 {
    color: var(--text-gray);
    line-height: 1.6;
}

.accordion_e3bc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.search-basic-4f9c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.search-basic-4f9c .mask-medium-7a3c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.search-basic-4f9c .fresh-5769 {
    color: var(--text-gray);
    line-height: 1.6;
}

.notice-a9a5 {
    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);
}

.input-d967 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.input-d967 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.input-d967 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.backdrop_over_6e2b {
    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);
}

.accordion-72f6 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.media-brown-2547 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.media-brown-2547 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.media-brown-2547 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);
}

.media-brown-2547 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.media-brown-2547 input::placeholder {
    color: var(--text-muted);
}

.module_81fc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.motion-aa10 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.motion-aa10 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.table_thick_9937 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.table_thick_9937:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.tertiary_edab {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tertiary_edab {
        grid-template-columns: repeat(4, 1fr);
    }
}

.title_7f38 {
    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);
}

.title_7f38 .panel_west_06a9 {
    font-size: 1.25rem;
}

.title_7f38 .aside-496d {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.paragraph-96ea {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.selected_c5c8 {
    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);
}

.selected_c5c8 .nav_warm_4608 {
    font-size: 2rem;
    flex-shrink: 0;
}

.selected_c5c8 .mask-medium-7a3c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.selected_c5c8 .fresh-5769 {
    color: var(--text-gray);
    line-height: 1.6;
}

.easy-c55c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.active-dd5e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.active-dd5e .element-tiny-5165 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.active-dd5e .menu-fresh-f191 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tabs_f75f {
    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);
}

.modal-glass-09ef {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .modal-glass-09ef {
        grid-template-columns: repeat(3, 1fr);
    }
}

.thumbnail_static_bd55 {
    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);
}

.thumbnail_static_bd55:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.preview_gas_3ab1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.border-e1c3 {
    flex: 1;
}

.dim_0c87 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.box-bottom-3ce3 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.paragraph-last-f6dd {
    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);
}

.paragraph-last-f6dd:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.main-north-dbb7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .main-north-dbb7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.summary_soft_cf23 {
    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);
}

.summary_soft_cf23:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.small-ca18 {
    font-size: 2rem;
    flex-shrink: 0;
}

.brown-ea98 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.input_df76 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.aside_2e00 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.text_3fbd {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.new-be39 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.avatar-ca56 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.avatar-ca56 .short_7ec9 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.avatar-ca56 .fresh_5805 {
    color: var(--text-gray);
    line-height: 1.6;
}

.section_stale_2728 {
    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);
}

.title_brown_d6a5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.cool_a694 {
    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);
}

.cool_a694 .nav_warm_4608 {
    font-size: 2rem;
    flex-shrink: 0;
}

.cool_a694 .mask-medium-7a3c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.cool_a694 .fresh-5769 {
    color: var(--text-gray);
    line-height: 1.6;
}

.prev-dede {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .prev-dede {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mini_7845 {
    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);
}

.mini_7845:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.secondary-d93c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .secondary-d93c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wood-5fcf {
    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);
}

.wood-5fcf:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.detail_static_b40c {
    font-size: 2rem;
    flex-shrink: 0;
}

.thick_cacb {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.left_f363 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.badge_white_d4a5 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.rough-ca9b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.popup_fluid_cb40 {
    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);
}

.popup_fluid_cb40:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.message-42ba {
    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);
}

.banner_hot_17af {
    flex: 1;
}

.feature_de3a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.photo_735a {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.purple_b4bc {
    color: var(--text-gray);
    line-height: 1.6;
}

.dropdown-simple-2c9b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.shade_dynamic_8181 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shade_dynamic_8181 .element-tiny-5165 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.shade_dynamic_8181 .menu-fresh-f191 {
    color: var(--text-gray);
    line-height: 1.6;
}

.iron-c1b9 {
    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);
}

.hover-3f6b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hover-3f6b {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.hero-46bb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hero-46bb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.action-e7c2 {
    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);
}

.action-e7c2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.description-a4ec {
    font-size: 2rem;
    flex-shrink: 0;
}

.main-0cd0 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.list_new_bd10 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.accordion_0683 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.notification-under-cb3e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.solid_9feb {
    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);
}

.column_1649 {
    font-size: 2rem;
    flex-shrink: 0;
}

.next-a0e2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.table-fresh-f25b {
    color: var(--text-gray);
    line-height: 1.6;
}

.title_brown_d6a5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.cool_a694 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.cool_a694 .mask-medium-7a3c {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.cool_a694 .fresh-5769 {
    color: var(--text-gray);
    line-height: 1.6;
}

.block-e7df {
    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);
}

.popup-d79e {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .popup-d79e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .popup-d79e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.action-b4d8 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.action-b4d8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.banner-3e7f {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.solid-48e7 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.action_f541 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.block_be7d {
    padding: 1.5rem;
}

.nav-31c4 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.block_6e32 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.block_6e32 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.block_6e32 li:last-child {
    border-bottom: none;
}

.block_6e32 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.inner-9395 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .inner-9395 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.border_0606 {
    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);
}

.border_0606:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.complex-8050 {
    font-size: 2rem;
    flex-shrink: 0;
}

.frame_1d7d {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.lite-1737 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.feature_2e4b {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.upper_aabf {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.white-e181 {
    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);
}

.carousel-46dc {
    font-size: 2rem;
    flex-shrink: 0;
}

.primary-4763 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.input_449d {
    color: var(--text-gray);
    line-height: 1.6;
}

.gas_ca49 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.label-purple-db29 {
    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);
}

.block_1547 {
    text-align: center;
}

.layout-focused-0c0e {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.section-0de3 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.dynamic-a0d4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.input-glass-aadf {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.input-glass-aadf .mask-medium-7a3c {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.input-glass-aadf .fresh-5769 {
    color: var(--text-gray);
    line-height: 1.6;
}

.image-wide-c938 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .image-wide-c938 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .image-wide-c938 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.east-bfc1 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.east-bfc1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.red_9a07 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.picture_in_6f8b {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.mask-medium-7a3c {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.modal-76c1 {
    padding: 1.5rem;
}

.fresh-5769 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.border_stale_8a57 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.border_stale_8a57 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;
}

.border_stale_8a57 li:last-child {
    border-bottom: none;
}

.border_stale_8a57 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.soft-5df6 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.label_2c73 {
    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);
}

.label_2c73:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pagination_4b44 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.medium-815e {
    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);
}

.menu-hard-36ec {
    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;
}

.breadcrumb_first_7a8b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.summary-0e54 {
    color: var(--text-gray);
    line-height: 1.6;
}

.dropdown_0b1d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.component_warm_c71a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.center_0356 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.progress-dynamic-2865 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.filter_df61 {
    display: flex;
    gap: 1rem;
}

.filter_df61 .heading_focused_3139 {
    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;
}

.module-c841 {
    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);
}

.gradient-warm-9276 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.modal_f6a5 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal_f6a5 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;
}

.modal_f6a5 li:last-child {
    border-bottom: none;
}

.modal_f6a5 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.summary-dc99 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .summary-dc99 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .summary-dc99 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sidebar_b720 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.sidebar_b720:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.notification-82ab {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.video-392d {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.short_7ec9 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.last-5a62 {
    font-size: 1rem;
}

.icon-92f3 {
    padding: 1.5rem;
}

.fresh_5805 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.surface_5be3 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.surface_5be3 .block_1547 {
    text-align: center;
}

.surface_5be3 .section-0de3 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.surface_5be3 .dim-60ef {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.search-e3d6 {
    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);
}

.search-e3d6:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.down-8cc4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .down-8cc4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dropdown_light_1973 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.dropdown_light_1973:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.row-plasma-f4d4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.element_057a {
    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);
}

.background_slow_19ed {
    font-size: 2rem;
    flex-shrink: 0;
}

.grid_rough_30dc {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.in-fbbb {
    color: var(--text-gray);
    line-height: 1.6;
}

.hero-c0ce {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.description_hot_e9ea {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.clean-38d9 {
    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);
}

.easy_8576 {
    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;
}

.easy_8576.hard_783b {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.easy_8576.pressed-9277 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.easy_8576.row_4d29 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.easy_8576.rough_1533 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.easy_8576.stone-3891 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.first-9828 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.small_ea87 {
    color: var(--text-gray);
    line-height: 1.6;
}

.mask-cold-4f50 {
    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);
}

.filter_plasma_7bbf {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.easy-c55c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.easy-c55c 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;
}

.easy-c55c li:last-child {
    border-bottom: none;
}

.easy-c55c li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.wrapper_3eef {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .wrapper_3eef {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .wrapper_3eef {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stale-2ade {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.stale-2ade:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.stale-2ade.south-1050 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .stale-2ade.south-1050 {
        grid-column: span 3;
    }
}

.soft_cbf4 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.stale-2ade.south-1050 .soft_cbf4 {
    background: rgba(6, 182, 212, 0.1);
}

.advanced-5bf8 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.element-dim-212a {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.stale-2ade.south-1050 .element-dim-212a {
    color: var(--info-color);
}

.row-fecc {
    padding: 1.5rem;
    text-align: center;
}

.thick_f305 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.stale-2ade.south-1050 .thick_f305 {
    color: var(--info-color);
}

.block_40c2 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.icon_f85a {
    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 */
.header_d28c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .header_d28c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.block_action_80d3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.block_action_80d3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.card-bb5b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.selected_c5c8 {
    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);
}

.panel_west_06a9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.outline-middle-823c {
    flex: 1;
}

.stale_5bc4 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.cool_bfde {
    color: var(--text-gray);
    line-height: 1.6;
}

.search_09cb {
    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);
}

.outline-cold-fdf0 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.pressed_ff2c {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.slow_9ced {
    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);
}

.modal_plasma_2f91 {
  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);
}

.modal_plasma_2f91 .block_1547 {
    text-align: center;
}

.modal_plasma_2f91 .layout-focused-0c0e {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.modal_plasma_2f91 .section-0de3 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.huge-a3b2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.thumbnail_2348 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.current-c14a {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.picture_motion_5930 {
    color: var(--text-gray);
    line-height: 1.6;
}

.surface-c01b {
    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);
}

.mini_3882 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.video_green_ffe2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.layout-huge-736c {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .layout-huge-736c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .layout-huge-736c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.shade_a66e {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.shade_a66e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.picture_focused_5b2b {
    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);
}

.panel-3ff8 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.message-focused-c76a {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.wrapper-motion-fcf6 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wrapper-motion-fcf6.description-tall-dc98 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.wrapper-motion-fcf6.upper_8944 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.wrapper-motion-fcf6.pattern-middle-f553 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.over_b4b7 {
    padding: 1.5rem;
    text-align: center;
}

.background-top-0dc8 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.texture-23aa {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.texture-23aa .element_active_fd21 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.popup_57c7 {
    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);
}

.popup_57c7:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.component_6600 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 3rem 0;
  padding: 2rem;
  background: rgba(16, 185, 129, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.block-next-5b73 {
    text-align: center;
}

.block-next-5b73 .layout-focused-0c0e {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.block-next-5b73 .section-0de3 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.notice_yellow_11c9 { text-align: center; }
.panel_76bd { text-align: left; }
.upper_d4ac { text-align: right; }

.layout-28a1 { margin-bottom: 0; }
.tooltip_dynamic_c8b4 { margin-bottom: 0.5rem; }
.tiny-fa3c { margin-bottom: 1rem; }
.glass-df96 { margin-bottom: 1.5rem; }
.small-4928 { margin-bottom: 2rem; }

.blue-edf7 { margin-top: 0; }
.over-4e28 { margin-top: 0.5rem; }
.pattern-9922 { margin-top: 1rem; }
.detail_tall_7fd9 { margin-top: 1.5rem; }
.video_top_9a90 { margin-top: 2rem; }

.fn-hidden-b10c { display: none; }
.fn-visible-b10c { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .warm-f7d0 {
        padding: 6rem 0 3rem;
    }
    
    .iron-2ed0 {
        text-align: center;
    }
    
    .inner-b911 {
        text-align: center;
    }
    
    .green_4eb8 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .texture-cool-c626,
    .gold-ea49,
    .thumbnail-under-f466,
    .accent-advanced-5fa5 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .warm-f7d0 {
        background: none;
    }
}

/* Providers Section */
.focus_6181 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.shade-center-61fa {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shade-center-61fa {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .shade-center-61fa {
        grid-template-columns: repeat(4, 1fr);
    }
}

.nav_last_60dc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.nav_last_60dc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.text-down-3f82 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.breadcrumb-static-8f9a {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.texture_light_e45d {
    list-style: none;
    padding: 0;
}

.texture_light_e45d li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.texture_light_e45d li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.overlay_767b {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.overlay_767b p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.container_ccc9 {
    padding: var(--section-padding);
}

.content-bottom-0ea5 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .content-bottom-0ea5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.small-d23e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.small-d23e:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.row_7124 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.highlight_db47 {
    display: flex;
    flex-direction: column;
}

.input_257c {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.hard_1364 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.progress_steel_c1db {
    color: var(--accent-color);
}

.heading_fd9a {
    font-size: 1.25rem;
}

.logo-c887 {
    margin-bottom: 1rem;
}

.logo-c887 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.wood-e83e {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.over_3da6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.block_1547 {
    text-align: center;
}

.layout-focused-0c0e {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.section-0de3 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.inner_dd7d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.next_a4e8 {
    margin: 2rem 0;
}

.badge-fluid-b183 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.badge-fluid-b183 .nav_warm_4608 {
    font-size: 2rem;
    flex-shrink: 0;
}

.paper_9c93 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.nav-7028 {
    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;
}

.nav-7028:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.north_e840 {
    font-size: 2rem;
}

.gradient-bfa1 {
    display: flex;
    flex-direction: column;
}

.top_26b8 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.bright_a3c3 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.row-active-5673 {
    padding: var(--section-padding);
}

.main-prev-4500 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .main-prev-4500 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .main-prev-4500 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.row-focused-42d5 {
    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);
}

.row-focused-42d5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.row-focused-42d5 .layout-focused-0c0e {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.row-focused-42d5 .section-0de3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.row-focused-42d5 .white-3ad4 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.frame-91d4 {
    margin-top: 4rem;
}

.dim-8259 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.sidebar-short-9b6e {
    overflow-x: auto;
}

.chip-cd6d {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.chip-cd6d thead {
    background: var(--accent-color);
}

.chip-cd6d th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.chip-cd6d td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.chip-cd6d tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.chip-cd6d tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.hard_e4ac {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hero-down-bc88 {
    max-width: 900px;
    margin: 0 auto;
}

.silver-b336 {
    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);
}

.silver-b336:hover {
    border-color: var(--accent-color);
}

.thick-a878 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.thick-a878 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.hard_0b1b {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.silver-b336.fn-active-b10c .hard_0b1b {
    transform: rotate(45deg);
}

.table_890c {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.silver-b336.fn-active-b10c .table_890c {
    max-height: 1000px;
}

.table_890c p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.bright_871b {
    padding: var(--section-padding);
}

.input-d967 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.mask-06e8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.title_0b7d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .title_0b7d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.message-61c0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.photo_4f7b {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card_mini_7083 {
    font-size: 2rem;
}

.message_active_127f {
    color: var(--text-white);
    margin: 0;
}

.accent_light_9ded {
    list-style: none;
    padding: 0;
}

.accent_light_9ded li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accent_light_9ded li:last-child {
    border-bottom: none;
}

.image-8190 {
    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);
}

.image-8190 p {
    color: var(--success-color);
    margin: 0;
}

.overlay-smooth-3f6c {
    margin-top: 3rem;
}

.gradient-warm-9276 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.mini-34d9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .mini-34d9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.message_clean_042c {
    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);
}

.notification-gas-c794 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.message_clean_042c p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.mini_2634 {
    padding: var(--section-padding);
}

.out-e24d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .out-e24d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.panel-c0e0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.panel-c0e0:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.article_red_c8b1 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.surface-eba3 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.button-paper-3dcd {
    flex: 1;
}

.caption_4ba2 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.static-02f0 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.blue-6809 {
    color: var(--text-gray);
    line-height: 1.6;
}

.plasma_a97a {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plasma_a97a:last-child {
    border-bottom: none;
}

/* Comparison Section */
.column-1a3d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.advanced-ae4a {
    padding: var(--section-padding);
}

.header-action-33e2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.highlight_tiny_84bb {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .highlight_tiny_84bb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.short-9da2 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.section-cc5d, .thumbnail-77db, .next-2ed7 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.next-2ed7 {
    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 */
.grid-3ef5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.solid_0446 {
    margin: 2rem 0;
}

.pattern_f69d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.static_733e {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.in_3267 {
    list-style: none;
    padding: 0;
}

.in_3267 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;
}

.in_3267 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.in_3267 li:last-child {
    border-bottom: none;
}

.current-0fba {
    text-align: center;
    margin-top: 2rem;
}

.block-f73d {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.banner_cold_ce4b {
    padding: var(--section-padding);
}

.feature_warm_dbd7 {
    margin: 2rem 0;
}

.slider-out-b79b {
    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) {
    .slider-out-b79b {
        flex-direction: column;
        align-items: flex-start;
    }
}

.slider-out-b79b:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.dropdown_5fee {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.info-f3d7 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.nav-6377 {
    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;
}

.frame-white-89d3 {
    flex: 1;
}

.rough_63da {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.slider_54f0 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.picture_3ecf {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.label-middle-8993 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .label-middle-8993 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.pressed_46e8 {
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.pressed_46e8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.pressed_46e8 .layout-focused-0c0e {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.pressed_46e8 .section-0de3 {
    color: var(--text-gray);
    font-size: 1rem;
}

.backdrop-af3f {
    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);
}

.overlay_fc6e {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.overlay_fc6e strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.backdrop_orange_3554 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .backdrop_orange_3554 {
        grid-template-columns: 1fr 1fr;
    }
}

.huge-578f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.button-af6e {
    margin-bottom: 1.5rem;
}

.button-af6e label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.button-af6e input,
.button-af6e 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;
}

.button-af6e input:focus,
.button-af6e select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.column_short_eec8 {
    width: 100%;
    margin-top: 1rem;
}

.backdrop_fresh_6cfb {
    display: flex;
    align-items: center;
}

.hidden-1347 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.lite_cb23 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.highlight_6a2c {
    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;
}

.backdrop-south-eeb3 {
    color: var(--text-gray);
}

.tall_ff72 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.accordion_lower_fbae {
    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);
}

.accordion_lower_fbae p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.progress_a08a {
    margin-top: 3rem;
}

.modal_09cd {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.tag_0629 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.panel_824e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.thick-c288 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.thick-c288:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.tertiary-3c8f {
    padding: var(--section-padding);
}

.dynamic-6fed {
    margin: 2rem 0;
}

.panel_7f94 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.gradient-5258 {
    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;
}

.gradient-5258:hover, .gradient-5258.fn-active-b10c {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.column_bottom_35f3 {
    display: none;
}

.column_bottom_35f3.fn-active-b10c {
    display: block;
}

.down_f4d4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.short_1eed {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.gradient-smooth-1fd1 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.gradient-smooth-1fd1 ul {
    list-style: none;
    padding: 0;
}

.gradient-smooth-1fd1 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.gradient-smooth-1fd1 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.media-upper-59b7 {
    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 */
.column_d7e9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.overlay_d3a9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.icon-af22 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.gallery-paper-2ea6 {
    color: var(--accent-color);
    margin: 0;
}

.pink_25fc {
    display: flex;
    gap: 1.5rem;
}

.box_abc0 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.north_b988 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.shade-68de {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.shade-68de.row-b284 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.shade-68de.hidden-5413 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.shade-68de.accent_e5ab {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.dynamic-0ba8 {
    margin-top: 2rem;
}

.surface-basic-3c37 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.tabs_gold_9cb1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .tabs_gold_9cb1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.avatar-easy-aa43 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.widget_iron_27ce {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.feature_7b9c {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.blue_e79b {
    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 */
.article-4343 {
    padding: var(--section-padding);
}

.grid_a6bc {
    margin: 2rem 0;
}

.sidebar-27bd {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.section-red-75c5 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.north_5fe8 {
    list-style: none;
    padding: 0;
}

.north_5fe8 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;
}

.north_5fe8 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.north_5fe8 li:last-child {
    border-bottom: none;
}

.action-6301 {
    margin: 2rem 0;
}

.short-cfc2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.smooth_8b10 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .smooth_8b10 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.active-38cd {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.red-1708 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.highlight_cfd8 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.feature-large-f376 {
    margin-top: 2rem;
}

.dim_0c87 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.tabs_brown_c966 {
    list-style: none;
    padding: 0;
}

.layout-green-f813 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.layout-green-f813 a {
    color: var(--accent-color);
    text-decoration: none;
}

.layout-green-f813 a:hover {
    text-decoration: underline;
}

.widget_slow_4f1a {
    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 */
.element_advanced_4a3a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.menu-hovered-4b48 {
    margin: 2rem 0;
}

.under-c325 {
    margin-bottom: 3rem;
}

.under-c325 .static_733e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.component-lower-317b {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.large_91db {
    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);
}

.large_91db:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.blue-95eb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .blue-95eb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.highlight_gold_664e {
    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 */
.focus_dim_bfef {
    padding: var(--section-padding);
}

.huge_af5c {
    margin: 2rem 0;
}

.tiny_48d1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.chip_easy_fc21 {
    overflow-x: auto;
    margin: 2rem 0;
}

.module_4750 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.tall-0b8b {
    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;
}

.background-wood-0a23 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.breadcrumb-5201 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .breadcrumb-5201 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.box_under_b5bc {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.box_under_b5bc .nav_warm_4608 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.box_under_b5bc .mask-medium-7a3c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.old_2376 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.thumbnail-clean-6140 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.image-40c4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .image-40c4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.video-c780 {
    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;
}

.video-c780:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.middle_1abf {
    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);
}

.dark-d661 {
    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;
}

.backdrop-7f88 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.component_a3cf {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.disabled-plasma-38aa {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.current_9ba6 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb-83b1 {
    color: var(--text-white);
    font-weight: 600;
}

.fluid-359a {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.slider-2321 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-2321 .heading_focused_3139 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.status_a1d0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .status_a1d0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fast-ea4d {
    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);
}

.fast-ea4d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.fast-ea4d .layout-focused-0c0e {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.fast-ea4d .section-0de3 {
    color: var(--text-gray);
    font-size: 1rem;
}

.background_1952 {
    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);
}

.block-dd37 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.block-dd37 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.notification-under-cb3e {
    margin: 2rem 0;
}

.solid_9feb {
    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);
}

.solid_9feb:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.column_1649 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.narrow_cdfc {
    flex: 1;
}

.next-a0e2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.table-fresh-f25b {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.title_brown_d6a5 {
    margin: 2rem 0;
}

.cool_a694 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.cool_a694 .mask-medium-7a3c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.cool_a694 .fresh-5769 {
    color: var(--text-gray);
    margin: 0;
}

.block-e7df {
    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);
}

.block-e7df .feature-new-013f {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.old_2376 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.message-42ba {
    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;
}

.banner_hot_17af {
    flex: 1;
}

.photo_735a {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.purple_b4bc {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.menu-hard-36ec {
    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;
}

.mini_3458 {
    flex: 1;
}

.breadcrumb_first_7a8b {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.summary-0e54 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.center_0356 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.progress-dynamic-2865 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.filter_df61 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.filter_df61 .heading_focused_3139 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.module-c841 {
    margin-top: 2rem;
}

.module-c841 .gradient-warm-9276 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.notice-e55c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.label-purple-db29 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .label-purple-db29 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.label-purple-db29 .block_1547 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dynamic-a0d4 {
    margin: 2rem 0;
}

.input-glass-aadf {
    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 */
.box-010a {
    padding: var(--section-padding);
}

.modal-76c1 {
    margin-top: 1rem;
}

.border_stale_8a57 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.border_stale_8a57 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.border_stale_8a57 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.focus_cool_83b5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hover-out-221b {
    margin: 2rem 0;
}

.block_basic_eecf {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.active_left_4ef4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.caption-9130 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.feature-4d7b {
    margin: 2rem 0;
}

.block-1bbf {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.block-1bbf .static_733e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.container-north-f5a7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .container-north-f5a7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.photo-fresh-71da {
    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);
}

.pagination-selected-43d5 {
    color: var(--text-white);
    font-weight: 600;
}

.shade-f313 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.badge_b77d {
    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);
}

.badge_b77d p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.grid_hovered_10ca {
    padding: var(--section-padding);
}

.popup-7184 {
    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;
}

.popup-7184:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.pagination_2dc9 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pagination_2dc9 .notification-gas-c794 {
    font-size: 2rem;
    flex-shrink: 0;
}

.pagination_2dc9 .yellow-0cfc {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.banner-liquid-4e17 {
    flex: 1;
}

.breadcrumb-c87e {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.paper-8f3c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.paper-8f3c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.paper-8f3c li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.active_bright_63c7 {
    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);
}

.active_bright_63c7 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.active_bright_63c7 strong {
    color: var(--warning-color);
}

/* Slots Section */
.bright-7d7f {
    padding: var(--section-padding);
}

.text_3fbd {
    margin: 2rem 0;
}

/* Table Games Section */
.secondary-2b74 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.new-be39 {
    margin: 2rem 0;
}

.avatar-ca56 {
    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);
}

.avatar-ca56:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.avatar-ca56 .short_7ec9 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.avatar-ca56 .fresh_5805 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.section_stale_2728 {
    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);
}

.section_stale_2728 .feature-new-013f {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.bronze_7c30 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tooltip-b4e6 {
    margin: 2rem 0;
}

.module-e28c {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.banner_motion_59ea {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.highlight_bce1 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.media-dark-173a {
    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);
}

.media-dark-173a:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.media-dark-173a.fn-active-b10c {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.caption_bright_c53b {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.article_mini_935b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.article_mini_935b strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.widget_simple_0054 {
    padding: var(--section-padding);
}

.footer-7ab8 {
    margin: 2rem 0;
}

.clean_7073 {
    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);
}

.clean_7073:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .clean_7073 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.avatar_east_ecfa {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.menu-outer-a486 {
    flex: 1;
}

.stone_3208 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.video-pro-b0ac {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.outline-liquid-23ca {
    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;
}

.surface-soft-023c {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.new-cbbf {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.avatar_b794 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.row-f3f0 {
    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;
}

.row-f3f0:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.search-red-0d8a {
    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);
}

.heading_4322 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.heading_4322 strong {
    color: var(--accent-color);
}

/* New Games Section */
.summary-red-6a1b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.primary-wide-463d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .primary-wide-463d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .primary-wide-463d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.input-1fc0 {
    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;
}

.input-1fc0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.tertiary_bronze_82b3 {
    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;
}

.grid_c154 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.focus-fast-3262 {
    font-size: 2rem;
}

.main_a081 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.dynamic-e7b7 {
    flex: 1;
}

.huge-1281 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.grid_large_33f3 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.advanced_aa5d {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.content-f8ec {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.east-ad6a {
    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;
}

.over_e796 {
    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;
}

.over_e796:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.right-c5ee {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.lower_11a0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.old-738b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .old-738b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.content-9b71 {
    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);
}

.small_44dd {
    color: var(--text-white);
    font-weight: 600;
}

.pro-62ed {
    color: var(--accent-color);
    font-weight: 600;
}

.wrapper_6169 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.wrapper_6169 strong {
    color: var(--accent-color);
}

/* Security Section */
.progress-short-24ec {
    padding: var(--section-padding);
}

/* Benefits Section */
.section-top-f03e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.layout-e8b3 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.tiny-e7e0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.article-e0ef {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.logo_0f02 {
    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) {
    .logo_0f02 {
        flex-direction: column;
        gap: 1rem;
    }
}

.logo_0f02:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.logo_0f02 .menu-hard-36ec {
    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;
}

.logo_0f02 .mini_3458 {
    flex: 1;
}

.logo_0f02 .breadcrumb_first_7a8b {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.logo_0f02 .summary-0e54 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.pattern_yellow_94f9 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pattern_yellow_94f9 .stale_5bc4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.pattern_yellow_94f9 .paragraph-96ea {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pattern_yellow_94f9 .paragraph-96ea li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.pattern_yellow_94f9 .paragraph-96ea li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.title_left_6516 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.iron_5d0b {
    padding: var(--section-padding);
}

.grid_1ab6 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .grid_1ab6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.accordion_gas_00e3 {
    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);
}

.accordion_gas_00e3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.accordion_gas_00e3 .block_cool_ce01 {
    font-size: 2rem;
    flex-shrink: 0;
}

.accordion_gas_00e3 .highlight_87e2 {
    flex: 1;
}

.accordion_gas_00e3 .element-tiny-5165 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.accordion_gas_00e3 .shadow-f702 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.lite_9f21 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.lite_9f21 .popup_inner_afac {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.lite_9f21 .thumbnail_brown_2cbc {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.lite_9f21 .thumbnail_brown_2cbc 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);
}

.lite_9f21 .thumbnail_brown_2cbc li:last-child {
    border-bottom: none;
}

.lite_9f21 .thumbnail_brown_2cbc 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;
}

.lite_9f21 .thumbnail_brown_2cbc li strong {
    color: var(--text-white);
}

.in-8171 {
    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);
}

.in-8171 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.in-8171 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.caption-8f3e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.feature_bronze_f444 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .feature_bronze_f444 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.sort_blue_79bb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.sort_blue_79bb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.pattern_88e9 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.white_49d8 {
    font-size: 2rem;
}

.pressed_4260 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.item_tiny_915e {
    flex: 1;
}

.focused-174d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.focused-174d li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.focused-174d li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.warm-46ba {
    margin-top: 3rem;
}

.sidebar-27bd {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.section-red-75c5 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.north_5fe8 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.north_5fe8 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.north_5fe8 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.north_5fe8 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.surface-4a09 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.thumbnail-7080 {
    margin: 2rem 0;
}

.photo-new-194d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.photo-new-194d .static_733e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.feature-tiny-fd6e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .feature-tiny-fd6e {
        grid-template-columns: repeat(2, 1fr);
    }
}

.solid_bd86 {
    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);
}

.solid_bd86:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.notification-hovered-f7a2 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.input_fab5 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.banner-4fce {
    padding: var(--section-padding);
}

.secondary-c446 {
    margin: 2rem 0;
}

.caption-8de9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .caption-8de9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .caption-8de9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.surface_305e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.surface_305e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.widget_full_2699 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.steel_7924 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.block-center-4e19 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.block-center-4e19.accordion_ca33 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.gradient_in_785c {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.link_79e5 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.bronze-1d50 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.logo_768b {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.layout_new_02d5 {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.layout_new_02d5 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.layout_new_02d5 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.info_57ce {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.green-30e4 {
    margin: 2rem 0;
}

.fluid_7214 {
    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) {
    .fluid_7214 {
        flex-direction: column;
        gap: 1rem;
    }
}

.fluid_7214:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.fluid_7214::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);
}

.layout-1c5a {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.panel-fast-459d {
    flex: 1;
}

.info_e39b {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.aside_35ff {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aside_35ff li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.mask_under_f0be {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.huge_4eae {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.element-1b55 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .element-1b55 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.highlight-wood-cfb9 {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--secondary-bg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hidden-6ca1 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.hard_4ad8 {
    flex: 1;
}

.media_soft_97d6 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.element-2151 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.progress_f41b {
    margin-top: 2rem;
    text-align: center;
}

.yellow_ed19 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.yellow_ed19 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.down-8cc4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .down-8cc4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dropdown_light_1973 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.dropdown_light_1973:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.dropdown_light_1973 .complex-8050 {
    font-size: 2rem;
    flex-shrink: 0;
}

.dropdown_light_1973 .frame_1d7d {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.dropdown_light_1973 .lite-1737 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.dropdown_light_1973 .feature_2e4b {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.component_old_1fc0 {
    padding: var(--section-padding);
}

.element_057a .block-78b5 {
    flex: 1;
}

/* Promo Calendar Section */
.info-7718 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.caption_a702 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .caption_a702 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.easy_e614 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.element_fb32 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.medium-0fca {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pressed-9e49 {
    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);
}

.motion-68b9 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.progress-7ee1 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.widget-b99f {
    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);
}

.widget-b99f p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.widget-b99f strong {
    color: var(--accent-color);
}

/* Requirements Section */
.sidebar_9d36 {
    padding: var(--section-padding);
}

.last_ae4a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .last_ae4a {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pagination_tiny_ed45 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.popup-steel-23a7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.pro-f107 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pro-f107 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.wrapper_2e2f {
    margin-top: 3rem;
}

.wrapper_2e2f .sidebar-27bd {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.wrapper_2e2f .section-red-75c5 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.wrapper_2e2f .north_5fe8 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.wrapper_2e2f .north_5fe8 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.wrapper_2e2f .north_5fe8 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.wrapper_2e2f .north_5fe8 li strong {
    color: var(--warning-color);
}

.alert-3f03 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.alert-3f03 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.disabled-38c6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.row-bottom-c22f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .row-bottom-c22f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bright_e53e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.bright_e53e .static_733e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.tooltip_east_0d21 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.warm-b4c0 {
    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);
}

.warm-b4c0:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.texture_wood_3be4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tertiary-72e0 {
    flex: 1;
}

.focus-8736 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.glass_182a {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.dropdown-447c {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.gradient-f630 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.menu_9f7d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .menu_9f7d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature_white_81c2 {
    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);
}

.feature_white_81c2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.title-next-afbf {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.block-upper-3bbb {
    color: var(--text-gray);
    font-size: 1rem;
}

.overlay_fc6e {
    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);
}

.hot-0744 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.hot-0744 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.hover-a28a { 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; }
.surface-da98, .link-wood-926c { max-width:100%; height:auto; }

.nav-red-b327, .west-66b9, .notice-addf { white-space:normal; }

.iron-2ed0,
.inner-b911,
.header_d28c,
.down-8cc4,
.title_brown_d6a5,
.layout-huge-736c {
  flex-wrap:wrap;
}

[class*="grid"],
.menu_9f7d,
.caption-8de9,
.description_large_06d7 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.warm-f7d0 img,
.inner-b911 img,
.warm-a734 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.motion-77b4, .dark-d768,
.detail_f7dd, .thumbnail-bf5b {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.sidebar-short-9b6e { width:100%; overflow-x:auto; }
.sidebar-short-9b6e table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.shade-center-61fa {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .shade-center-61fa {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.nav_last_60dc {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.main-prev-4500,
.gallery-wood-b599,
.photo-514e,
.tag_hovered_ae45,
.label-middle-8993,
.menu_9f7d,
.caption-8de9,
.description_large_06d7,
.component_6600,
.footer-7ab8,
.shade-center-61fa {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .main-prev-4500,
  .gallery-wood-b599,
  .photo-514e,
  .tag_hovered_ae45,
  .label-middle-8993,
  .menu_9f7d,
  .caption-8de9,
  .description_large_06d7,
  .component_6600,
  .footer-7ab8,
  .shade-center-61fa {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.row-focused-42d5,
.pressed_46e8,
.feature_white_81c2,
.module-selected-b7a7,
.surface_305e,
.block-next-5b73,
.clean_7073,
.nav_last_60dc {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.notification_61dd,
.hero_static_f527,
.hard_fdda {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.notification_61dd > *,
.hero_static_f527 > *,
.hard_fdda > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 3f4f */
.promo-block-d1 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.3;
}
