/* {$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;
}

.title_8d90 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.outer_d8e3 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .outer_d8e3 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .outer_d8e3 {
        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 */
.basic_1725 {
    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);
}

.warm-bba1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .warm-bba1 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .container-mini-5f19 {
        grid-column: 1;
    }
    
    .table_061c {
        grid-column: 2;
    }
    
    .notification-static-e050 {
        grid-column: 3;
    }
}

.container-mini-5f19 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.container-mini-5f19:hover img {
    transform: scale(1.05);
}

/* Navigation */
.heading-5849 {
    display: none;
}

@media (min-width: 1024px) {
    .heading-5849 {
        display: block;
    }
}

/* Grouped Navigation */
.right_5541 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.advanced-ae8e {
    position: relative;
}

.gold-18e5 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.advanced-ae8e .brown-3583 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.brown-3583 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.section-7cbc {
    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;
}

.section-7cbc:hover,
.section-7cbc.fn-active-2330 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.hovered_189b {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .hovered_189b {
        display: flex;
    }
}

/* Mobile Register Button */
.table_061c {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .table_061c {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.pattern_3a57 {
    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;
}

.pattern_3a57::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 */
.notification-static-e050 {
    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) {
    .notification-static-e050 {
        display: none;
    }
}

.notification-static-e050 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.notification-static-e050.fn-active-2330 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.notification-static-e050.fn-active-2330 span:nth-child(2) {
    opacity: 0;
}

.notification-static-e050.fn-active-2330 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.paper_5420 {
    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;
}

.paper_5420.fn-active-2330 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.overlay-b844 {
    overflow: hidden;
}

.mask_new_92fc {
    list-style: none;
    padding: 0.75rem 0;
}

.paragraph-simple-d6b1 {
    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;
}

.paragraph-simple-d6b1:hover,
.paragraph-simple-d6b1.fn-active-2330 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.paragraph-simple-d6b1.overlay_bronze_0766 {
    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;
}

.paragraph-simple-d6b1.overlay_bronze_0766::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 */
.backdrop_out_f374 {
    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;
}

.notification-tiny-fd93 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.notification-tiny-fd93:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.status_5c3b {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.status_5c3b:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.clean-5754 {
    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;
}

.clean-5754:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.gradient-small-f6d7 {
    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;
}

.mini-c371 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.mini-c371:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.disabled_ec11 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.disabled_ec11:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.avatar_thick_92ae {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.avatar_thick_92ae: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);
}

.button-focused-4374 {
    font-size: 1em;
    font-weight: 700;
}

.form-fast-70f5 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.content_brown_7a90 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.content_brown_7a90::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;
}

.info_stone_14f0 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .info_stone_14f0 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.light_3521 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.first-e919 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.green_6684 {
    margin-bottom: 2rem;
}

.wood-8f81 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .wood-8f81 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.aside-03e7 {
    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);
}

.carousel-selected-96ee {
    font-size: 1.5rem;
}

.pink-d1ed {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.photo_stone_342f {
    display: flex;
    justify-content: center;
    align-items: center;
}

.widget-lite-d343 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.widget-lite-d343:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.feature_rough_bc73 {
    text-align: center;
    margin-bottom: 3rem;
}

.element-thick-9bb2 {
    margin-bottom: 1rem;
}

.wrapper-dynamic-c96f {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.over_c685 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .over_c685 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .over_c685.narrow-be34 {
        direction: rtl;
    }
    
    .over_c685.narrow-be34 > * {
        direction: ltr;
    }
}

.wood_5a6d {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.wood_5a6d:first-child {
    margin-top: 0;
}

.avatar-orange-e4ec {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.progress-upper-ac60 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.progress-upper-ac60:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.module_slow_fd88 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .module_slow_fd88 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.in_9f1a {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.slider_hard_2207 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.warm_f4ab {
    list-style: none;
}

.warm_f4ab li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.warm_f4ab li:last-child {
    border-bottom: none;
}

/* Games Features */
.notice_paper_169b {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.fresh_3b2d {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.footer-huge-d34b {
    font-size: 2rem;
    flex-shrink: 0;
}

.info_4e9d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.heading_c34c {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.card_tiny_6ef7 {
    margin: 2rem 0;
}

.bottom_4ebd {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.dark-a0aa {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.secondary-02f6 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.fast_8c10 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.highlight_2c38 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .highlight_2c38 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.popup-9279 {
    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);
}

.popup-9279:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.white_a49b {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.container_ba0f {
    font-size: 1.5rem;
}

.video-motion-98a1 {
    color: var(--accent-color);
    margin: 0;
}

.over_076d {
    list-style: none;
}

.over_076d li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.over_076d li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.thumbnail_outer_f8bd {
    margin: 2rem 0;
}

.hovered-9931 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.motion-e6a4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .motion-e6a4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gas-a6da {
    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);
}

.modal-9f71 {
    font-size: 1.25rem;
}

.slider_full_4e66 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.easy-c1cc,
.image-simple-9f66 {
    text-align: center;
    margin: 2rem 0;
}

.steel_07c9,
.hot_943c {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.filter_prev_e51c {
    margin: 2rem 0;
    text-align: center;
}

.block-warm-c54f {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.block-warm-c54f::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;
}

.input-005c {
    position: relative;
    z-index: 1;
}

.nav_motion_b266 {
    margin-bottom: 1rem;
}

.media-7604 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tabs_old_7080 {
    margin-bottom: 3rem;
}

.chip-48f3 {
    margin-top: 3rem;
}

.hard-94fa {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hard-94fa {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hard-94fa .aside-03e7 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.orange-35ad {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.notice-short-38d3 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.aside-a4d2 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.block-d40e {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .block-d40e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .block-d40e {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.purple_ed10 {
    margin-bottom: 1rem;
}

.content-north-d646 img {
    margin-bottom: 1rem;
}

.tertiary_dark_0db4 {
    color: var(--text-gray);
    line-height: 1.6;
}

.element_2e58 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.focused-98d4 {
    list-style: none;
}

.focused-98d4 li {
    margin-bottom: 0.5rem;
}

.focused-98d4 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.focused-98d4 a:hover {
    color: var(--accent-color);
}

.primary_pressed_7fc9 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.nav-simple-159b {
    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);
}

.nav-simple-159b:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.surface_light_b686 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.surface_light_b686 p {
    margin-bottom: 0.25rem;
}

.up-8891 {
    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) {
    .up-8891 {
        flex-direction: row;
    }
}

.secondary_7f8c {
    text-align: center;
}

@media (min-width: 768px) {
    .secondary_7f8c {
        text-align: left;
    }
}

.secondary_7f8c p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.bottom-59ca {
    font-size: 0.75rem !important;
}

.gas-94ae {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.main_224b {
    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);
    }
}

.primary_ebed {
    animation: fadeInUp 0.6s ease-out;
}

.west_9519 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.wrapper_2bd2 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .wrapper_2bd2 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.feature-tiny-9653 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .feature-tiny-9653 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.first_19a3 {
    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);
}

.first_19a3 .footer-huge-d34b {
    font-size: 1.25rem;
}

.first_19a3 .current-03d6 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.shade-rough-e52c {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .shade-rough-e52c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.right_03ca {
    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);
}

.right_03ca:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.summary_lite_407c {
    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);
}

.dim-7172 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.green-b2ba {
    color: var(--text-gray);
    line-height: 1.6;
}

.orange-696d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.box-pro-330c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.box-pro-330c .info_4e9d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.box-pro-330c .heading_c34c {
    color: var(--text-gray);
    line-height: 1.6;
}

.image-97c8 {
    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);
}

.picture_d307 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.picture_d307 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.picture_d307 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.dropdown_24e6 {
    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);
}

.south-f6c0 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.over_45f0 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.over_45f0 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.over_45f0 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);
}

.over_45f0 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.over_45f0 input::placeholder {
    color: var(--text-muted);
}

.middle_30ad {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.box-e755 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.box-e755 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.detail_c3f4 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.detail_c3f4:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.motion-e6a4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .motion-e6a4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gas-a6da {
    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);
}

.gas-a6da .modal-9f71 {
    font-size: 1.25rem;
}

.gas-a6da .slider_full_4e66 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.badge-4072 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hover_8ec9 {
    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);
}

.hover_8ec9 .footer-huge-d34b {
    font-size: 2rem;
    flex-shrink: 0;
}

.hover_8ec9 .info_4e9d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hover_8ec9 .heading_c34c {
    color: var(--text-gray);
    line-height: 1.6;
}

.tag-pressed-029e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.row-d3ad {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.row-d3ad .table-inner-5a15 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.row-d3ad .tabs_b037 {
    color: var(--text-gray);
    line-height: 1.6;
}

.dim_c643 {
    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);
}

.layout-961f {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .layout-961f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.inner-2288 {
    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);
}

.inner-2288:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.search-5f27 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.media-cool-9764 {
    flex: 1;
}

.frame_011b {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.last_1802 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tabs_a98c {
    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);
}

.tabs_a98c:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.main-5e30 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .main-5e30 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.article-48bc {
    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);
}

.article-48bc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.backdrop_79e0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tabs-yellow-dbb5 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.module-red-f6eb {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.main_outer_4f99 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.item-b233 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.highlight-b45b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.highlight_fluid_cffe {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.highlight_fluid_cffe .new-9083 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.highlight_fluid_cffe .slider-pink-07be {
    color: var(--text-gray);
    line-height: 1.6;
}

.article-stale-7c44 {
    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);
}

.chip-ee50 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.smooth-3eb6 {
    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);
}

.smooth-3eb6 .footer-huge-d34b {
    font-size: 2rem;
    flex-shrink: 0;
}

.smooth-3eb6 .info_4e9d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.smooth-3eb6 .heading_c34c {
    color: var(--text-gray);
    line-height: 1.6;
}

.motion_4d18 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .motion_4d18 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.header-a86e {
    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);
}

.header-a86e:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.fresh-8d0a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fresh-8d0a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wood_fe9f {
    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_fe9f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.video_bd0d {
    font-size: 2rem;
    flex-shrink: 0;
}

.input_6abf {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dark-a0aa {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.fixed-87fc {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.label_gas_6115 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.item_c235 {
    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);
}

.item_c235:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.component_5f22 {
    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);
}

.search_2749 {
    flex: 1;
}

.hover-a304 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.label-c82d {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.middle-d1d1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.input_yellow_fa77 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.widget_57ed {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.widget_57ed .table-inner-5a15 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.widget_57ed .tabs_b037 {
    color: var(--text-gray);
    line-height: 1.6;
}

.image-simple-9f66 {
    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);
}

.icon-orange-a7aa {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .icon-orange-a7aa {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.lower_a37c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .lower_a37c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.red_1e44 {
    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);
}

.red_1e44:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.link_f81d {
    font-size: 2rem;
    flex-shrink: 0;
}

.purple-2ca1 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.message_4494 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.north_fbeb {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.tag_silver_c374 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.accordion-up-51b9 {
    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);
}

.description-ecc4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.link_hard_29f4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.footer-basic-e9ee {
    color: var(--text-gray);
    line-height: 1.6;
}

.chip-ee50 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.smooth-3eb6 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.smooth-3eb6 .info_4e9d {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.smooth-3eb6 .heading_c34c {
    color: var(--text-gray);
    line-height: 1.6;
}

.medium-0e38 {
    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);
}

.copper-4df1 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .copper-4df1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .copper-4df1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wrapper-7bd3 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.wrapper-7bd3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.search_e33e {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.accent-cacf {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.steel-60d0 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.article_c8f9 {
    padding: 1.5rem;
}

.border_down_c4cd {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.wrapper_narrow_7794 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wrapper_narrow_7794 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.wrapper_narrow_7794 li:last-child {
    border-bottom: none;
}

.wrapper_narrow_7794 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.message_cool_c8da {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .message_cool_c8da {
        grid-template-columns: repeat(4, 1fr);
    }
}

.layout_focused_e5f0 {
    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);
}

.layout_focused_e5f0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.simple_58ad {
    font-size: 2rem;
    flex-shrink: 0;
}

.dirty_4539 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.list-b7df {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.shadow_solid_ddf3 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.heading-792a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.text_52c2 {
    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);
}

.upper_4bb8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.overlay_a881 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.alert_hard_5d3f {
    color: var(--text-gray);
    line-height: 1.6;
}

.wrapper-static-f67c {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.image-9f04 {
    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);
}

.border-glass-1f89 {
    text-align: center;
}

.notification_middle_9156 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.south-5883 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.container_af1c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.image_cool_e02e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.image_cool_e02e .info_4e9d {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.image_cool_e02e .heading_c34c {
    color: var(--text-gray);
    line-height: 1.6;
}

.selected-5d1c {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .selected-5d1c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .selected-5d1c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.green_d9c2 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.green_d9c2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.primary_99b2 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.gas_218c {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.info_4e9d {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.breadcrumb_606f {
    padding: 1.5rem;
}

.heading_c34c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.thick-87e9 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.thick-87e9 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;
}

.thick-87e9 li:last-child {
    border-bottom: none;
}

.thick-87e9 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.sort_easy_a141 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.slider_4d86 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.slider_4d86:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.section_right_9471 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.paper_2479 {
    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);
}

.summary_lite_407c {
    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;
}

.dim-7172 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.green-b2ba {
    color: var(--text-gray);
    line-height: 1.6;
}

.column_ecce {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gradient_prev_9037 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.short-d304 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.text-6c75 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.shade_action_480d {
    display: flex;
    gap: 1rem;
}

.shade_action_480d .heading_4d09 {
    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_advanced_a61d {
    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);
}

.media-8a9c {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.east-39ff {
    list-style: none;
    padding: 0;
    margin: 0;
}

.east-39ff li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.east-39ff li:last-child {
    border-bottom: none;
}

.east-39ff li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.row_ea46 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .row_ea46 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .row_ea46 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.shadow-b02c {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.shadow-b02c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.breadcrumb_29b6 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.focus-active-db79 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.new-9083 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.shade-0f79 {
    font-size: 1rem;
}

.preview_c7fa {
    padding: 1.5rem;
}

.slider-pink-07be {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.media-2e7b {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.media-2e7b .border-glass-1f89 {
    text-align: center;
}

.media-2e7b .south-5883 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.media-2e7b .caption_cold_96b0 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.search-0663 {
    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-0663:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.thumbnail-cdcf {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .thumbnail-cdcf {
        grid-template-columns: repeat(4, 1fr);
    }
}

.motion-bbc0 {
    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);
}

.motion-bbc0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.shade-cfcf {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.glass-e723 {
    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);
}

.accordion-fixed-dbda {
    font-size: 2rem;
    flex-shrink: 0;
}

.thumbnail_f769 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.menu-narrow-a7c7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.accordion-lite-9659 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.panel_f718 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.fresh_168c {
    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);
}

.lower-e9fc {
    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;
}

.lower-e9fc.input_silver_26c9 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.lower-e9fc.nav-north-34d5 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.lower-e9fc.paper_8f9f {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.lower-e9fc.row-3d00 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.lower-e9fc.nav-in-f569 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.photo-78e2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.fixed_6bd5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.light_c714 {
    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);
}

.focused-194e {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.tag-pressed-029e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tag-pressed-029e li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.tag-pressed-029e li:last-child {
    border-bottom: none;
}

.tag-pressed-029e li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.accent_green_1303 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .accent_green_1303 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .accent_green_1303 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.status-clean-4e88 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.status-clean-4e88:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.status-clean-4e88.notice-short-281d {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .status-clean-4e88.notice-short-281d {
        grid-column: span 3;
    }
}

.hidden_1546 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.status-clean-4e88.notice-short-281d .hidden_1546 {
    background: rgba(6, 182, 212, 0.1);
}

.over-9471 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.next-c62b {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.status-clean-4e88.notice-short-281d .next-c62b {
    color: var(--info-color);
}

.tiny_af01 {
    padding: 1.5rem;
    text-align: center;
}

.widget-advanced-d795 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.status-clean-4e88.notice-short-281d .widget-advanced-d795 {
    color: var(--info-color);
}

.shadow_6cf4 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.shadow_slow_ef72 {
    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 */
.avatar-over-8376 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .avatar-over-8376 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.heading-static-0335 {
    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);
}

.heading-static-0335:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.short-a212 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hover_8ec9 {
    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);
}

.modal-9f71 {
    font-size: 2rem;
    flex-shrink: 0;
}

.item-2a45 {
    flex: 1;
}

.hovered-9931 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.primary-lite-8c78 {
    color: var(--text-gray);
    line-height: 1.6;
}

.huge_7d2d {
    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);
}

.shadow_down_d351 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.section_5fb3 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.main_224b {
    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);
}

.simple-abd6 {
  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);
}

.simple-abd6 .border-glass-1f89 {
    text-align: center;
}

.simple-abd6 .notification_middle_9156 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.simple-abd6 .south-5883 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.alert_c771 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wide_d5f0 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.logo-0837 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.frame-light-0a34 {
    color: var(--text-gray);
    line-height: 1.6;
}

.purple_3381 {
    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-515a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.south-32d7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.fixed_13c0 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .fixed_13c0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .fixed_13c0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hidden_pro_9d26 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.hidden_pro_9d26:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.status_ab2a {
    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);
}

.background-west-dd23 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.solid-2bbc {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.accordion-216f {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.accordion-216f.overlay-left-8ad8 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.accordion-216f.module_1d3d {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.accordion-216f.short_8612 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.background_7157 {
    padding: 1.5rem;
    text-align: center;
}

.modal_4064 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.media_c5a4 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.media_c5a4 .red_7f78 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.message_outer_a317 {
    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);
}

.message_outer_a317:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.hot-903e {
  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);
}

.list-3de6 {
    text-align: center;
}

.list-3de6 .notification_middle_9156 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.list-3de6 .south-5883 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.alert_5403 { text-align: center; }
.grid-bottom-aa19 { text-align: left; }
.clean-c27c { text-align: right; }

.label_023e { margin-bottom: 0; }
.tabs_bdda { margin-bottom: 0.5rem; }
.tag_warm_a8a5 { margin-bottom: 1rem; }
.tooltip-e996 { margin-bottom: 1.5rem; }
.copper_0836 { margin-bottom: 2rem; }

.next_50e0 { margin-top: 0; }
.wood_63af { margin-top: 0.5rem; }
.medium-16ea { margin-top: 1rem; }
.banner-dim-fb11 { margin-top: 1.5rem; }
.input-fresh-2bcb { margin-top: 2rem; }

.fn-hidden-2330 { display: none; }
.fn-visible-2330 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .content_brown_7a90 {
        padding: 6rem 0 3rem;
    }
    
    .info_stone_14f0 {
        text-align: center;
    }
    
    .over_c685 {
        text-align: center;
    }
    
    .wood-8f81 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .basic_1725,
    .paper_5420,
    .block-warm-c54f,
    .aside-a4d2 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .content_brown_7a90 {
        background: none;
    }
}

/* Providers Section */
.bottom-e8cd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.card-0cb2 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .card-0cb2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .card-0cb2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.motion_ba61 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.motion_ba61:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.picture-wide-ace1 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.accent_old_b6f5 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.header-207b {
    list-style: none;
    padding: 0;
}

.header-207b li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.header-207b li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.mini_1492 {
    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);
}

.mini_1492 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.pattern_under_4482 {
    padding: var(--section-padding);
}

.pagination_paper_ca5d {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pagination_paper_ca5d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.content-508e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.content-508e:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.prev-3e67 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.active-1691 {
    display: flex;
    flex-direction: column;
}

.dropdown_ab89 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.gradient-dbc1 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.icon-d4ea {
    color: var(--accent-color);
}

.cool_7fec {
    font-size: 1.25rem;
}

.detail-gas-8ae0 {
    margin-bottom: 1rem;
}

.detail-gas-8ae0 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.pro_0623 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.wrapper_right_e372 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.border-glass-1f89 {
    text-align: center;
}

.notification_middle_9156 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.south-5883 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.secondary-7edf {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.large-bce5 {
    margin: 2rem 0;
}

.right_5ffa {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.right_5ffa .footer-huge-d34b {
    font-size: 2rem;
    flex-shrink: 0;
}

.overlay-7af0 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.frame_7ebe {
    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;
}

.frame_7ebe:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.tall_537b {
    font-size: 2rem;
}

.chip_complex_e951 {
    display: flex;
    flex-direction: column;
}

.footer_b00b {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.filter_prev_c005 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.pro-de58 {
    padding: var(--section-padding);
}

.grid_hard_f780 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .grid_hard_f780 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid_hard_f780 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.list-green-fa97 {
    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);
}

.list-green-fa97:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.list-green-fa97 .notification_middle_9156 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.list-green-fa97 .south-5883 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.list-green-fa97 .box-6f26 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.banner_5194 {
    margin-top: 4rem;
}

.notification-6c91 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.solid_cb1c {
    overflow-x: auto;
}

.huge_3c36 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.huge_3c36 thead {
    background: var(--accent-color);
}

.huge_3c36 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.huge_3c36 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.huge_3c36 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.huge_3c36 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.sort-over-3553 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.carousel-dirty-35fd {
    max-width: 900px;
    margin: 0 auto;
}

.element_4256 {
    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);
}

.element_4256:hover {
    border-color: var(--accent-color);
}

.label-38de {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.label-38de h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.gradient-3d37 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.element_4256.fn-active-2330 .gradient-3d37 {
    transform: rotate(45deg);
}

.complex_c0d1 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.element_4256.fn-active-2330 .complex_c0d1 {
    max-height: 1000px;
}

.complex_c0d1 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.mask_copper_1546 {
    padding: var(--section-padding);
}

.picture_d307 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.current-9ac3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.fixed_5d36 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fixed_5d36 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.paragraph_e8b3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.focus-c4dc {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.fixed_440e {
    font-size: 2rem;
}

.main_b720 {
    color: var(--text-white);
    margin: 0;
}

.highlight_selected_44d1 {
    list-style: none;
    padding: 0;
}

.highlight_selected_44d1 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight_selected_44d1 li:last-child {
    border-bottom: none;
}

.article-bffa {
    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);
}

.article-bffa p {
    color: var(--success-color);
    margin: 0;
}

.gradient_upper_b18b {
    margin-top: 3rem;
}

.media-8a9c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.container-smooth-b52d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .container-smooth-b52d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.first_e591 {
    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);
}

.wrapper_f938 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.first_e591 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.stale-4f12 {
    padding: var(--section-padding);
}

.small_6a0c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .small_6a0c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.list_8bbb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.list_8bbb:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.column-copper-6277 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mask-selected-8697 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.photo_narrow_d72e {
    flex: 1;
}

.section-9db2 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.texture_outer_38c0 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.block-cool-be39 {
    color: var(--text-gray);
    line-height: 1.6;
}

.paragraph_62fd {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.paragraph_62fd:last-child {
    border-bottom: none;
}

/* Comparison Section */
.main_wide_9bf8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.iron-12e3 {
    padding: var(--section-padding);
}

.accent_silver_d10f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.container-fa25 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .container-fa25 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.frame-28cb {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.description-complex-5faf, .west_a4bf, .red-9ecd {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.red-9ecd {
    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 */
.icon-7e4a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.avatar_yellow_95ea {
    margin: 2rem 0;
}

.dark_91ae {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hidden-thick-44d0 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.table_34cb {
    list-style: none;
    padding: 0;
}

.table_34cb 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;
}

.table_34cb li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.table_34cb li:last-child {
    border-bottom: none;
}

.slider_cc4c {
    text-align: center;
    margin-top: 2rem;
}

.soft-6b8d {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.solid-f9bf {
    padding: var(--section-padding);
}

.dropdown_b906 {
    margin: 2rem 0;
}

.wrapper-2bdc {
    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) {
    .wrapper-2bdc {
        flex-direction: column;
        align-items: flex-start;
    }
}

.wrapper-2bdc:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.hard_9154 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.in-be33 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.popup-1573 {
    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;
}

.smooth_7578 {
    flex: 1;
}

.under-4954 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.background-802c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.table_cd51 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.element-brown-6dbf {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .element-brown-6dbf {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.image-a552 {
    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);
}

.image-a552:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.image-a552 .notification_middle_9156 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.image-a552 .south-5883 {
    color: var(--text-gray);
    font-size: 1rem;
}

.avatar_d81e {
    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);
}

.element-5e77 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.element-5e77 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.outer-8886 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .outer-8886 {
        grid-template-columns: 1fr 1fr;
    }
}

.tertiary-21b1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.lower-86df {
    margin-bottom: 1.5rem;
}

.lower-86df label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.lower-86df input,
.lower-86df 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;
}

.lower-86df input:focus,
.lower-86df select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.menu-hovered-af3c {
    width: 100%;
    margin-top: 1rem;
}

.filter-b4eb {
    display: flex;
    align-items: center;
}

.plasma-8ebe {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.footer_clean_6f38 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.logo-9ed4 {
    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;
}

.gallery_selected_bb70 {
    color: var(--text-gray);
}

.background_ecd4 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.large-f556 {
    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);
}

.large-f556 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.grid_c5fa {
    margin-top: 3rem;
}

.widget_gas_0fb7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.pink-f9e7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.inner_aff4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.sort-658a {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sort-658a:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.hover-5ec1 {
    padding: var(--section-padding);
}

.gallery-ca00 {
    margin: 2rem 0;
}

.rough_b88a {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.pattern-in-b64d {
    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;
}

.pattern-in-b64d:hover, .pattern-in-b64d.fn-active-2330 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.selected-6c45 {
    display: none;
}

.selected-6c45.fn-active-2330 {
    display: block;
}

.action-4d15 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.modal-tall-1392 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.surface-1044 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.surface-1044 ul {
    list-style: none;
    padding: 0;
}

.surface-1044 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.surface-1044 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.block-cold-003d {
    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 */
.hero-57cb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.chip_fixed_3a71 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.card-liquid-3674 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.form-6a2a {
    color: var(--accent-color);
    margin: 0;
}

.article_b185 {
    display: flex;
    gap: 1.5rem;
}

.breadcrumb_dim_517e {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.shade_action_18ac {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.outer-e1a4 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.outer-e1a4.form-wide-ff49 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.outer-e1a4.mask_purple_dbeb {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.outer-e1a4.last_5d7a {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.disabled_brown_36a1 {
    margin-top: 2rem;
}

.dropdown-819e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.pattern_easy_a043 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .pattern_easy_a043 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.avatar-dark-e563 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.tertiary-current-ef66 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.search-0d0e {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.surface-ab2f {
    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 */
.tall-d3d6 {
    padding: var(--section-padding);
}

.link_0b09 {
    margin: 2rem 0;
}

.info-wide-2c23 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.out-278f {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.tooltip-hard-0042 {
    list-style: none;
    padding: 0;
}

.tooltip-hard-0042 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;
}

.tooltip-hard-0042 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.tooltip-hard-0042 li:last-child {
    border-bottom: none;
}

.frame-static-24ac {
    margin: 2rem 0;
}

.disabled_center_e2c1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.content_ac4b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .content_ac4b {
        grid-template-columns: repeat(2, 1fr);
    }
}

.filter_orange_f9ba {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.carousel-pink-12ea {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.video-right-76e3 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.tall_ac4a {
    margin-top: 2rem;
}

.frame_011b {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.content_hard_7f21 {
    list-style: none;
    padding: 0;
}

.up-af06 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.up-af06 a {
    color: var(--accent-color);
    text-decoration: none;
}

.up-af06 a:hover {
    text-decoration: underline;
}

.west_8650 {
    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 */
.sort-left-14d0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.cool-2d54 {
    margin: 2rem 0;
}

.button_last_cac5 {
    margin-bottom: 3rem;
}

.button_last_cac5 .hidden-thick-44d0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.full_dfb7 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.secondary_7ed5 {
    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);
}

.secondary_7ed5:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.image-7994 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .image-7994 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tiny_98a9 {
    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 */
.caption_b0d1 {
    padding: var(--section-padding);
}

.status_f8f9 {
    margin: 2rem 0;
}

.hero-d2bd {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.sort_eb31 {
    overflow-x: auto;
    margin: 2rem 0;
}

.wood-d627 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.prev_4353 {
    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;
}

.wrapper-white-f8b3 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.south_d30c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .south_d30c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.block-out-8f17 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.block-out-8f17 .footer-huge-d34b {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.block-out-8f17 .info_4e9d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hero_left_f0ad {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.highlight_white_0da4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.caption-7eba {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .caption-7eba {
        grid-template-columns: repeat(3, 1fr);
    }
}

.article-cool-a138 {
    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;
}

.article-cool-a138:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.tertiary-easy-ed3a {
    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);
}

.container-a181 {
    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;
}

.tooltip-last-038b {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.lower-0354 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.menu-c082 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.short-fbff {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hard-4cf3 {
    color: var(--text-white);
    font-weight: 600;
}

.description_east_e471 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.active_plasma_67b0 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.active_plasma_67b0 .heading_4d09 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.widget_inner_bbb3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .widget_inner_bbb3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.last_ee5e {
    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);
}

.last_ee5e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.last_ee5e .notification_middle_9156 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.last_ee5e .south-5883 {
    color: var(--text-gray);
    font-size: 1rem;
}

.modal-46a1 {
    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);
}

.list-51b2 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.list-51b2 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.tag_silver_c374 {
    margin: 2rem 0;
}

.accordion-up-51b9 {
    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);
}

.accordion-up-51b9:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.description-ecc4 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.light-0a50 {
    flex: 1;
}

.link_hard_29f4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.footer-basic-e9ee {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.chip-ee50 {
    margin: 2rem 0;
}

.smooth-3eb6 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.smooth-3eb6 .info_4e9d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.smooth-3eb6 .heading_c34c {
    color: var(--text-gray);
    margin: 0;
}

.medium-0e38 {
    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);
}

.medium-0e38 .steel_07c9 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.hero_left_f0ad {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.component_5f22 {
    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;
}

.search_2749 {
    flex: 1;
}

.label-c82d {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.middle-d1d1 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.summary_lite_407c {
    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;
}

.grid-orange-97b9 {
    flex: 1;
}

.dim-7172 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.green-b2ba {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.short-d304 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.text-6c75 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.shade_action_480d {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.shade_action_480d .heading_4d09 {
    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_advanced_a61d {
    margin-top: 2rem;
}

.module_advanced_a61d .media-8a9c {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.carousel_2395 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.image-9f04 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .image-9f04 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.image-9f04 .border-glass-1f89 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.container_af1c {
    margin: 2rem 0;
}

.image_cool_e02e {
    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 */
.fresh-c874 {
    padding: var(--section-padding);
}

.breadcrumb_606f {
    margin-top: 1rem;
}

.thick-87e9 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.thick-87e9 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.thick-87e9 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.description_e33f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hover_purple_3a17 {
    margin: 2rem 0;
}

.section_73ac {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.advanced_9dc6 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.frame-under-4943 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.small-e9a6 {
    margin: 2rem 0;
}

.column_37c7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.column_37c7 .hidden-thick-44d0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hidden-bright-c47e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hidden-bright-c47e {
        grid-template-columns: repeat(2, 1fr);
    }
}

.notice_017e {
    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);
}

.container_a44d {
    color: var(--text-white);
    font-weight: 600;
}

.easy_83b1 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.avatar_e301 {
    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);
}

.avatar_e301 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.accent_3887 {
    padding: var(--section-padding);
}

.footer_warm_7a8f {
    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;
}

.footer_warm_7a8f:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.picture-667a {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.picture-667a .wrapper_f938 {
    font-size: 2rem;
    flex-shrink: 0;
}

.picture-667a .wrapper_2000 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.copper_d34f {
    flex: 1;
}

.label_9d3f {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.highlight_fb41 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlight_fb41 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.highlight_fb41 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.smooth-92d2 {
    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);
}

.smooth-92d2 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.smooth-92d2 strong {
    color: var(--warning-color);
}

/* Slots Section */
.tabs_f95b {
    padding: var(--section-padding);
}

.item-b233 {
    margin: 2rem 0;
}

/* Table Games Section */
.article_in_d678 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.highlight-b45b {
    margin: 2rem 0;
}

.highlight_fluid_cffe {
    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);
}

.highlight_fluid_cffe:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.highlight_fluid_cffe .new-9083 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.highlight_fluid_cffe .slider-pink-07be {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.article-stale-7c44 {
    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);
}

.article-stale-7c44 .steel_07c9 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.static-3b1a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.block_c3b5 {
    margin: 2rem 0;
}

.focus_ae42 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.picture-narrow-67f0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.label-655f {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-c269 {
    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);
}

.hero-c269:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.hero-c269.fn-active-2330 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.badge_d003 {
    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);
}

.paragraph-warm-1f36 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.paragraph-warm-1f36 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.popup-63a4 {
    padding: var(--section-padding);
}

.top-16f0 {
    margin: 2rem 0;
}

.outline_fixed_fb52 {
    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);
}

.outline_fixed_fb52:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .outline_fixed_fb52 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.focus_small_214b {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.feature-pressed-a1f2 {
    flex: 1;
}

.south-3685 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.bright-7313 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.pattern_7bc1 {
    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;
}

.huge-0f24 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.info_7090 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.notice_8c79 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.new-5be2 {
    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;
}

.new-5be2:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.nav_dirty_afaf {
    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);
}

.paragraph-c851 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.paragraph-c851 strong {
    color: var(--accent-color);
}

/* New Games Section */
.layout_92cf {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.button_gas_5eab {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .button_gas_5eab {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .button_gas_5eab {
        grid-template-columns: repeat(4, 1fr);
    }
}

.content-1d52 {
    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;
}

.content-1d52:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.component_paper_feb4 {
    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;
}

.cool_b63c {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.gallery-dim-a255 {
    font-size: 2rem;
}

.primary_b1d8 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.message_hard_fc8e {
    flex: 1;
}

.wide-2751 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.rough-d863 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.frame_c532 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.message-613f {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.dynamic_cb62 {
    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;
}

.notification_f31a {
    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;
}

.notification_f31a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.wrapper-smooth-35a2 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.widget_9824 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.nav-advanced-a54f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .nav-advanced-a54f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.focus_huge_86c1 {
    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);
}

.fast_6994 {
    color: var(--text-white);
    font-weight: 600;
}

.right_9c27 {
    color: var(--accent-color);
    font-weight: 600;
}

.filter_94df {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.filter_94df strong {
    color: var(--accent-color);
}

/* Security Section */
.advanced_30c1 {
    padding: var(--section-padding);
}

/* Benefits Section */
.accordion-7283 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.panel_f503 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.outer-08dd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.chip-full-3da4 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.easy-fd6c {
    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) {
    .easy-fd6c {
        flex-direction: column;
        gap: 1rem;
    }
}

.easy-fd6c:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.easy-fd6c .summary_lite_407c {
    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;
}

.easy-fd6c .grid-orange-97b9 {
    flex: 1;
}

.easy-fd6c .dim-7172 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.easy-fd6c .green-b2ba {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.link-bd88 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.link-bd88 .hovered-9931 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.link-bd88 .badge-4072 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-bd88 .badge-4072 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.link-bd88 .badge-4072 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.filter_8ae5 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.fixed-53f6 {
    padding: var(--section-padding);
}

.logo_right_c116 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .logo_right_c116 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.description-middle-2ba9 {
    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);
}

.description-middle-2ba9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.description-middle-2ba9 .dropdown-lite-d393 {
    font-size: 2rem;
    flex-shrink: 0;
}

.description-middle-2ba9 .highlight_stone_1bed {
    flex: 1;
}

.description-middle-2ba9 .table-inner-5a15 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.description-middle-2ba9 .panel_3f3c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.container_soft_fe5e {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.container_soft_fe5e .active-40f8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.container_soft_fe5e .video-bright-2eea {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.container_soft_fe5e .video-bright-2eea 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);
}

.container_soft_fe5e .video-bright-2eea li:last-child {
    border-bottom: none;
}

.container_soft_fe5e .video-bright-2eea 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;
}

.container_soft_fe5e .video-bright-2eea li strong {
    color: var(--text-white);
}

.alert_935f {
    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);
}

.alert_935f p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.alert_935f strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.status_7618 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dropdown-be58 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .dropdown-be58 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.orange_9c89 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.orange_9c89:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.tooltip-dark-84aa {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.easy_7c17 {
    font-size: 2rem;
}

.link_hovered_7551 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.block-white-1185 {
    flex: 1;
}

.tabs_856f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tabs_856f li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.tabs_856f li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.title-7861 {
    margin-top: 3rem;
}

.info-wide-2c23 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.out-278f {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tooltip-hard-0042 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tooltip-hard-0042 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.tooltip-hard-0042 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.tooltip-hard-0042 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.top_f268 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.mask_af5a {
    margin: 2rem 0;
}

.title_green_8b15 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.title_green_8b15 .hidden-thick-44d0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.module-f9e7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .module-f9e7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.thick-7ef2 {
    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);
}

.thick-7ef2:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.yellow_439c {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tertiary_out_e94e {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.modal-0ae9 {
    padding: var(--section-padding);
}

.smooth_a329 {
    margin: 2rem 0;
}

.wrapper-orange-658c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .wrapper-orange-658c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .wrapper-orange-658c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.cold_8533 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.cold_8533:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.sort_black_b7be {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.row_daf4 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.notice-gold-ed36 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.notice-gold-ed36.image_cdfa {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.nav-current-e5b2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.full_a35e {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.message_539e {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-df5b {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.surface-wide-152d {
    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);
}

.surface-wide-152d p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.surface-wide-152d strong {
    color: var(--accent-color);
}

/* Update Log Section */
.panel_48ee {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.grid-728a {
    margin: 2rem 0;
}

.progress-clean-9004 {
    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) {
    .progress-clean-9004 {
        flex-direction: column;
        gap: 1rem;
    }
}

.progress-clean-9004:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.progress-clean-9004::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);
}

.small-dec4 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.menu_copper_0e4e {
    flex: 1;
}

.pink_a312 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.static_2721 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.static_2721 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.picture_ab73 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.small-aab9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.background-f768 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .background-f768 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.item_683b {
    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-373c {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.easy-ee62 {
    flex: 1;
}

.disabled_blue_eacd {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.tag-66ab {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.tooltip-b4c4 {
    margin-top: 2rem;
    text-align: center;
}

.sidebar_ac6b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.sidebar_ac6b strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.thumbnail-cdcf {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .thumbnail-cdcf {
        grid-template-columns: repeat(4, 1fr);
    }
}

.motion-bbc0 {
    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);
}

.motion-bbc0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.motion-bbc0 .simple_58ad {
    font-size: 2rem;
    flex-shrink: 0;
}

.motion-bbc0 .dirty_4539 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.motion-bbc0 .list-b7df {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.motion-bbc0 .shadow_solid_ddf3 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.paragraph-out-9b18 {
    padding: var(--section-padding);
}

.glass-e723 .mini_e613 {
    flex: 1;
}

/* Promo Calendar Section */
.upper-d9f3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.info_upper_f7df {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .info_upper_f7df {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stone-1982 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.photo_west_a3fc {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.box_upper_c4fa {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-bronze-9648 {
    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);
}

.logo_huge_e9a1 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.highlight-easy-9204 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.widget-0bb5 {
    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-0bb5 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.widget-0bb5 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.tall_b1dd {
    padding: var(--section-padding);
}

.steel_f4f1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .steel_f4f1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.description_18c5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.search_bceb {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.center-e748 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.center-e748 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.wide_7741 {
    margin-top: 3rem;
}

.wide_7741 .info-wide-2c23 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.wide_7741 .out-278f {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.wide_7741 .tooltip-hard-0042 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.wide_7741 .tooltip-hard-0042 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.wide_7741 .tooltip-hard-0042 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.wide_7741 .tooltip-hard-0042 li strong {
    color: var(--warning-color);
}

.primary-mini-28fd {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.primary-mini-28fd strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.accordion-dim-7e91 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.silver-f1d2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .silver-f1d2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-full-5889 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.feature-full-5889 .hidden-thick-44d0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.pressed_f67f {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.caption_fresh_32d7 {
    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);
}

.caption_fresh_32d7:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.fixed-d5b3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.thumbnail_iron_58f3 {
    flex: 1;
}

.highlight_3b18 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.in-2906 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.pressed-43c3 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.dynamic_06bb {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.hidden_c944 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .hidden_c944 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pro_7e15 {
    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);
}

.pro_7e15:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.label-12d3 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.accordion-bb90 {
    color: var(--text-gray);
    font-size: 1rem;
}

.element-5e77 {
    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);
}

.motion_02a0 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.motion_02a0 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.outer_d8e3 { 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; }
.widget-lite-d343, .progress-upper-ac60 { max-width:100%; height:auto; }

.backdrop_out_f374, .clean-5754, .gradient-small-f6d7 { white-space:normal; }

.info_stone_14f0,
.over_c685,
.avatar-over-8376,
.thumbnail-cdcf,
.chip-ee50,
.fixed_13c0 {
  flex-wrap:wrap;
}

[class*="grid"],
.hidden_c944,
.wrapper-orange-658c,
.hard-94fa {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.content_brown_7a90 img,
.over_c685 img,
.photo_stone_342f img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.light_3521, .first-e919,
.element-thick-9bb2, .wrapper-dynamic-c96f {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.solid_cb1c { width:100%; overflow-x:auto; }
.solid_cb1c table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.card-0cb2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .card-0cb2 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.motion_ba61 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.grid_hard_f780,
.light_8faf,
.search_34eb,
.dark-bf33,
.element-brown-6dbf,
.hidden_c944,
.wrapper-orange-658c,
.hard-94fa,
.hot-903e,
.top-16f0,
.card-0cb2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .grid_hard_f780,
  .light_8faf,
  .search_34eb,
  .dark-bf33,
  .element-brown-6dbf,
  .hidden_c944,
  .wrapper-orange-658c,
  .hard-94fa,
  .hot-903e,
  .top-16f0,
  .card-0cb2 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.list-green-fa97,
.image-a552,
.pro_7e15,
.aside-03e7,
.cold_8533,
.list-3de6,
.outline_fixed_fb52,
.motion_ba61 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.hot-ff9e,
.tag_white_5718,
.backdrop-84d1 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hot-ff9e > *,
.tag_white_5718 > *,
.backdrop-84d1 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 6c83 */
.ghost-box-p1 {
  padding: 0.5rem;
  font-size: 10px;
  line-height: 1.0;
}
