/* {$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;
}

.soft_f4de {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.card-5388 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .card-5388 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .card-5388 {
        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 */
.title-63a6 {
    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);
}

.breadcrumb_ca29 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .breadcrumb_ca29 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .header-145f {
        grid-column: 1;
    }
    
    .light_c956 {
        grid-column: 2;
    }
    
    .notification-c735 {
        grid-column: 3;
    }
}

.header-145f img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.header-145f:hover img {
    transform: scale(1.05);
}

/* Navigation */
.simple_8968 {
    display: none;
}

@media (min-width: 1024px) {
    .simple_8968 {
        display: block;
    }
}

/* Grouped Navigation */
.icon-light-4d9a {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.iron-6561 {
    position: relative;
}

.carousel_small_9615 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.iron-6561 .notice-last-5302 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.notice-last-5302 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.info_silver_6118 {
    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;
}

.info_silver_6118:hover,
.info_silver_6118.fn-active-6859 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.basic_cb5f {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .basic_cb5f {
        display: flex;
    }
}

/* Mobile Register Button */
.light_c956 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .light_c956 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.modal_ccb0 {
    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;
}

.modal_ccb0::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-c735 {
    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-c735 {
        display: none;
    }
}

.notification-c735 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.notification-c735.fn-active-6859 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.notification-c735.fn-active-6859 span:nth-child(2) {
    opacity: 0;
}

.notification-c735.fn-active-6859 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.main-iron-a83a {
    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;
}

.main-iron-a83a.fn-active-6859 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.content-fd54 {
    overflow: hidden;
}

.solid_1f63 {
    list-style: none;
    padding: 0.75rem 0;
}

.wood-5cf4 {
    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;
}

.wood-5cf4:hover,
.wood-5cf4.fn-active-6859 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.wood-5cf4.feature-center-a3c8 {
    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;
}

.wood-5cf4.feature-center-a3c8::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 */
.pressed-13e4 {
    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;
}

.feature-active-0137 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.feature-active-0137:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.component-tall-ad6f {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.component-tall-ad6f:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.row-inner-d9cf {
    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;
}

.row-inner-d9cf:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.info-green-eacb {
    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-3461 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.mini-3461:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.large_3532 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.large_3532:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.description_f435 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.description_f435: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);
}

.input_53de {
    font-size: 1em;
    font-weight: 700;
}

.over-eded {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.dropdown-650f {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.dropdown-650f::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;
}

.hover-7633 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .hover-7633 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.hover-fresh-9793 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.row_63cd {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.warm_0d81 {
    margin-bottom: 2rem;
}

.north-77bc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .north-77bc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.widget-light-b396 {
    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);
}

.pagination_smooth_f369 {
    font-size: 1.5rem;
}

.content-8abe {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.carousel-copper-87af {
    display: flex;
    justify-content: center;
    align-items: center;
}

.picture_thick_5d72 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.picture_thick_5d72:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.status-280c {
    text-align: center;
    margin-bottom: 3rem;
}

.nav-down-3b68 {
    margin-bottom: 1rem;
}

.row-lite-77d1 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.highlight-large-022a {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .highlight-large-022a {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .highlight-large-022a.article_hovered_9305 {
        direction: rtl;
    }
    
    .highlight-large-022a.article_hovered_9305 > * {
        direction: ltr;
    }
}

.focus_center_c38d {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.focus_center_c38d:first-child {
    margin-top: 0;
}

.hero_1a02 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.text-north-1f7d {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.text-north-1f7d:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.column_fd71 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .column_fd71 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.outline_right_2e80 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.tag-1818 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.focus_e758 {
    list-style: none;
}

.focus_e758 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.focus_e758 li:last-child {
    border-bottom: none;
}

/* Games Features */
.iron_0c04 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.aside_soft_6627 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.bottom-3a3f {
    font-size: 2rem;
    flex-shrink: 0;
}

.active-39c8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.button-dynamic-661f {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.top-7076 {
    margin: 2rem 0;
}

.orange-c95b {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.yellow-03c5 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.module-77db {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.header_over_6234 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.top-ccb6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .top-ccb6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.main-06d3 {
    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);
}

.main-06d3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.video-f736 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.summary-fluid-0dbc {
    font-size: 1.5rem;
}

.container_8d52 {
    color: var(--accent-color);
    margin: 0;
}

.mask_bright_bbdd {
    list-style: none;
}

.mask_bright_bbdd li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.mask_bright_bbdd li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.footer-8c1e {
    margin: 2rem 0;
}

.full-0cf7 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.accent-5acd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .accent-5acd {
        grid-template-columns: repeat(4, 1fr);
    }
}

.text-green-68ba {
    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);
}

.bright_fc40 {
    font-size: 1.25rem;
}

.nav-4b0b {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.east-f70b,
.outline-static-88f6 {
    text-align: center;
    margin: 2rem 0;
}

.accordion_f381,
.hot-46ed {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.south_954d {
    margin: 2rem 0;
    text-align: center;
}

.popup-bb1a {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.popup-bb1a::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;
}

.message_motion_44fc {
    position: relative;
    z-index: 1;
}

.sidebar-bc34 {
    margin-bottom: 1rem;
}

.complex_0ef4 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.text-lower-6dbe {
    margin-bottom: 3rem;
}

.module_242f {
    margin-top: 3rem;
}

.active_a7a1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .active_a7a1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.active_a7a1 .widget-light-b396 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.wrapper-solid-2419 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.thumbnail-wood-dbcd {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.copper_23d8 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.mini_e498 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .mini_e498 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .mini_e498 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.cold_1cf1 {
    margin-bottom: 1rem;
}

.outline-bottom-b61e img {
    margin-bottom: 1rem;
}

.message-stale-1926 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tertiary-in-3e6a {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.list_69eb {
    list-style: none;
}

.list_69eb li {
    margin-bottom: 0.5rem;
}

.list_69eb a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.list_69eb a:hover {
    color: var(--accent-color);
}

.primary-bb8d {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.heading_a481 {
    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);
}

.heading_a481:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.glass_a452 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.glass_a452 p {
    margin-bottom: 0.25rem;
}

.smooth-4d3b {
    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) {
    .smooth-4d3b {
        flex-direction: row;
    }
}

.up-fb75 {
    text-align: center;
}

@media (min-width: 768px) {
    .up-fb75 {
        text-align: left;
    }
}

.up-fb75 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.selected_aac8 {
    font-size: 0.75rem !important;
}

.small-3ae6 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.table_right_f2ee {
    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_orange_ed69 {
    animation: fadeInUp 0.6s ease-out;
}

.menu_west_06eb {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.notice-c9a7 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .notice-c9a7 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.disabled_out_4951 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .disabled_out_4951 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.label_clean_7016 {
    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);
}

.label_clean_7016 .bottom-3a3f {
    font-size: 1.25rem;
}

.label_clean_7016 .wrapper_ddc9 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.column-slow-64a5 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .column-slow-64a5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.clean_c9eb {
    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);
}

.clean_c9eb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.detail_purple_87f2 {
    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);
}

.purple_8ed0 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.soft-03b5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.section-3d5b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.card_hot_61fa {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.card_hot_61fa .active-39c8 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.card_hot_61fa .button-dynamic-661f {
    color: var(--text-gray);
    line-height: 1.6;
}

.article_hot_0a0c {
    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);
}

.border_narrow_8faa {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.border_narrow_8faa img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.border_narrow_8faa img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.info-a349 {
    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);
}

.purple_b1dd {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bronze-6930 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bronze-6930 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.bronze-6930 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);
}

.bronze-6930 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.bronze-6930 input::placeholder {
    color: var(--text-muted);
}

.column-43d2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.summary_down_94a3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.summary_down_94a3 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.banner-fb7d {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.banner-fb7d:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.accent-5acd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accent-5acd {
        grid-template-columns: repeat(4, 1fr);
    }
}

.text-green-68ba {
    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);
}

.text-green-68ba .bright_fc40 {
    font-size: 1.25rem;
}

.text-green-68ba .nav-4b0b {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.media_thick_5a9d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.new-df9a {
    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);
}

.new-df9a .bottom-3a3f {
    font-size: 2rem;
    flex-shrink: 0;
}

.new-df9a .active-39c8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.new-df9a .button-dynamic-661f {
    color: var(--text-gray);
    line-height: 1.6;
}

.filter-last-47c8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.form_outer_f834 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.form_outer_f834 .hover_9c9d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.form_outer_f834 .search-lower-e0c4 {
    color: var(--text-gray);
    line-height: 1.6;
}

.background_white_9d7c {
    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);
}

.background-8ec8 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .background-8ec8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.widget_71f7 {
    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);
}

.widget_71f7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.caption-eb7b {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.advanced-cbc2 {
    flex: 1;
}

.video_advanced_50e2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.mask_cool_66aa {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.content_50cd {
    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);
}

.content_50cd:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.primary_5738 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .primary_5738 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pattern-0b75 {
    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);
}

.pattern-0b75:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.photo_1893 {
    font-size: 2rem;
    flex-shrink: 0;
}

.pagination_e4a4 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.container_2a76 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.dirty_4a68 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.container-39e6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.advanced_212d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.video-68e5 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.video-68e5 .wrapper_smooth_ea09 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.video-68e5 .warm-8f58 {
    color: var(--text-gray);
    line-height: 1.6;
}

.text-advanced-a330 {
    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);
}

.down_e98c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tabs_fafe {
    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);
}

.tabs_fafe .bottom-3a3f {
    font-size: 2rem;
    flex-shrink: 0;
}

.tabs_fafe .active-39c8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tabs_fafe .button-dynamic-661f {
    color: var(--text-gray);
    line-height: 1.6;
}

.form_cc51 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .form_cc51 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.caption-25e9 {
    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);
}

.caption-25e9:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.light-9cf8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .light-9cf8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sidebar_adb6 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.sidebar_adb6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.warm_4ef0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.progress-080c {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.yellow-03c5 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.fixed-4dd0 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.block-8f82 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.thumbnail_basic_4045 {
    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);
}

.thumbnail_basic_4045:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.section_c281 {
    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);
}

.table-first-2fa1 {
    flex: 1;
}

.secondary-hot-4a68 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.form-right-00a1 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.aside-middle-2a4a {
    color: var(--text-gray);
    line-height: 1.6;
}

.dropdown-0b91 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hero_db6b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hero_db6b .hover_9c9d {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hero_db6b .search-lower-e0c4 {
    color: var(--text-gray);
    line-height: 1.6;
}

.outline-static-88f6 {
    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);
}

.red_6abb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .red_6abb {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.stone-2ec4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .stone-2ec4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.menu-smooth-b680 {
    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);
}

.menu-smooth-b680:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.right_9742 {
    font-size: 2rem;
    flex-shrink: 0;
}

.gallery_copper_59a9 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.logo-0802 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.surface_solid_3a05 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.input_hard_583f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.static-b70d {
    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);
}

.popup_gold_177a {
    font-size: 2rem;
    flex-shrink: 0;
}

.surface_advanced_4f66 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.icon_warm_103c {
    color: var(--text-gray);
    line-height: 1.6;
}

.down_e98c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tabs_fafe {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.tabs_fafe .active-39c8 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tabs_fafe .button-dynamic-661f {
    color: var(--text-gray);
    line-height: 1.6;
}

.status-3691 {
    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);
}

.gallery-stone-d90f {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .gallery-stone-d90f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-stone-d90f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.secondary_6602 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.secondary_6602:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.breadcrumb-rough-db9f {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.cold_29f6 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.east-58b6 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.primary_5cc6 {
    padding: 1.5rem;
}

.panel-prev-3907 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.mask-0f2a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mask-0f2a 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;
}

.mask-0f2a li:last-child {
    border-bottom: none;
}

.mask-0f2a li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.message_bf61 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .message_bf61 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.banner_thick_c6f9 {
    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);
}

.banner_thick_c6f9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.up_d3e6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.top_af51 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.shade-prev-a68c {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.label-ca55 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.photo_left_ee2b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.glass-ca28 {
    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);
}

.label-dbbd {
    font-size: 2rem;
    flex-shrink: 0;
}

.element_7175 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.top-a8b1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.popup-new-c757 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.primary-f264 {
    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);
}

.easy-041b {
    text-align: center;
}

.feature-e05c {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.notice-9544 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.sidebar-edff {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.advanced_0437 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.advanced_0437 .active-39c8 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.advanced_0437 .button-dynamic-661f {
    color: var(--text-gray);
    line-height: 1.6;
}

.paragraph-fast-e980 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .paragraph-fast-e980 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .paragraph-fast-e980 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.nav-680b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.nav-680b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.old-7d4d {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.filter-soft-69aa {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.active-39c8 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.brown_b29a {
    padding: 1.5rem;
}

.button-dynamic-661f {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.slow-35fc {
    list-style: none;
    padding: 0;
    margin: 0;
}

.slow-35fc 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;
}

.slow-35fc li:last-child {
    border-bottom: none;
}

.slow-35fc li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.green_8403 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.title_ba2e {
    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);
}

.title_ba2e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pink_610e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.paper-a78a {
    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);
}

.detail_purple_87f2 {
    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;
}

.purple_8ed0 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.soft-03b5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.form-warm-174b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.panel-fdd6 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.description-short-8746 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.highlight_13e7 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.module_first_c69a {
    display: flex;
    gap: 1rem;
}

.module_first_c69a .photo_aed5 {
    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;
}

.row-6987 {
    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);
}

.picture-solid-e67c {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.active_cce3 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.active_cce3 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;
}

.active_cce3 li:last-child {
    border-bottom: none;
}

.active_cce3 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.grid-clean-aaba {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .grid-clean-aaba {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-clean-aaba {
        grid-template-columns: repeat(4, 1fr);
    }
}

.short-8080 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.short-8080:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pagination-left-39f8 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.out_8fab {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.wrapper_smooth_ea09 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.sidebar_next_fe75 {
    font-size: 1rem;
}

.basic-4b97 {
    padding: 1.5rem;
}

.warm-8f58 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.tag_32ec {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.tag_32ec .easy-041b {
    text-align: center;
}

.tag_32ec .notice-9544 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.tag_32ec .focused-5e3b {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.gradient-299e {
    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);
}

.gradient-299e:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.shade_south_33c0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shade_south_33c0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.top_7ccd {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.top_7ccd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.link-prev-8355 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.main_84bd {
    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);
}

.frame_inner_792e {
    font-size: 2rem;
    flex-shrink: 0;
}

.outline-action-e681 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.action_d125 {
    color: var(--text-gray);
    line-height: 1.6;
}

.under-fd73 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.modal_1b4f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.fixed-3c4c {
    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);
}

.row-south-4494 {
    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;
}

.row-south-4494.alert-ca59 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.row-south-4494.picture_8f18 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.row-south-4494.paper_335f {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.row-south-4494.surface-0317 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.row-south-4494.shadow-70ad {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.aside-0d61 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.inner-7a65 {
    color: var(--text-gray);
    line-height: 1.6;
}

.secondary-a715 {
    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);
}

.dropdown-lite-4cdc {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.filter-last-47c8 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-last-47c8 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;
}

.filter-last-47c8 li:last-child {
    border-bottom: none;
}

.filter-last-47c8 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.caption_4741 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .caption_4741 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .caption_4741 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.accordion-soft-6419 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.accordion-soft-6419:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.accordion-soft-6419.border_simple_644b {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .accordion-soft-6419.border_simple_644b {
        grid-column: span 3;
    }
}

.bronze_a50c {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.accordion-soft-6419.border_simple_644b .bronze_a50c {
    background: rgba(6, 182, 212, 0.1);
}

.disabled_8509 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.texture_7a0f {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.accordion-soft-6419.border_simple_644b .texture_7a0f {
    color: var(--info-color);
}

.column_fluid_3a87 {
    padding: 1.5rem;
    text-align: center;
}

.iron-bb98 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.accordion-soft-6419.border_simple_644b .iron-bb98 {
    color: var(--info-color);
}

.section_over_7c4f {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.blue_a29b {
    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 */
.surface_up_a637 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .surface_up_a637 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.static-6003 {
    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);
}

.static-6003:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.thumbnail_orange_c53d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.new-df9a {
    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);
}

.bright_fc40 {
    font-size: 2rem;
    flex-shrink: 0;
}

.icon_stone_456f {
    flex: 1;
}

.full-0cf7 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.dynamic_2786 {
    color: var(--text-gray);
    line-height: 1.6;
}

.pro_7ba6 {
    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);
}

.item-lower-8018 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.first-6d43 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.table_right_f2ee {
    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);
}

.component-f94b {
  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);
}

.component-f94b .easy-041b {
    text-align: center;
}

.component-f94b .feature-e05c {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.component-f94b .notice-9544 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.summary-stale-9917 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.stone_c8c5 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.full-6618 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.item_5c4a {
    color: var(--text-gray);
    line-height: 1.6;
}

.text-37b5 {
    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);
}

.hover-paper-89c2 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.dynamic_d8b8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.menu-8fae {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .menu-8fae {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .menu-8fae {
        grid-template-columns: repeat(3, 1fr);
    }
}

.selected-322f {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.selected-322f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.container_14a1 {
    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);
}

.header-hard-985f {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.hover-hot-302b {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.bright_2a14 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bright_2a14.progress_50f4 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.bright_2a14.paper-7765 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.bright_2a14.paragraph_af21 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.picture-f089 {
    padding: 1.5rem;
    text-align: center;
}

.tooltip-short-cb9c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.slow-fc02 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.slow-fc02 .feature-up-0079 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.focus_brown_4c39 {
    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);
}

.focus_brown_4c39:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.modal_b6aa {
  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);
}

.static_4948 {
    text-align: center;
}

.static_4948 .feature-e05c {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.static_4948 .notice-9544 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.title_c93a { text-align: center; }
.sidebar_6835 { text-align: left; }
.banner-6180 { text-align: right; }

.mini-acce { margin-bottom: 0; }
.outer-67f7 { margin-bottom: 0.5rem; }
.mask_warm_d936 { margin-bottom: 1rem; }
.full_24a2 { margin-bottom: 1.5rem; }
.thumbnail-b4fe { margin-bottom: 2rem; }

.gallery-9b6f { margin-top: 0; }
.chip-ab34 { margin-top: 0.5rem; }
.video_0cd8 { margin-top: 1rem; }
.frame-thick-b3ed { margin-top: 1.5rem; }
.tabs-fixed-95dd { margin-top: 2rem; }

.fn-hidden-6859 { display: none; }
.fn-visible-6859 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .dropdown-650f {
        padding: 6rem 0 3rem;
    }
    
    .hover-7633 {
        text-align: center;
    }
    
    .highlight-large-022a {
        text-align: center;
    }
    
    .north-77bc {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .title-63a6,
    .main-iron-a83a,
    .popup-bb1a,
    .copper_23d8 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .dropdown-650f {
        background: none;
    }
}

/* Providers Section */
.menu-f512 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.popup-920a {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .popup-920a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .popup-920a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.breadcrumb_yellow_1dc4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.breadcrumb_yellow_1dc4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.notification_338c {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.dropdown_7c5f {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.alert-west-e0fa {
    list-style: none;
    padding: 0;
}

.alert-west-e0fa li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.alert-west-e0fa li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.feature_mini_a584 {
    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);
}

.feature_mini_a584 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.widget-south-7070 {
    padding: var(--section-padding);
}

.outer_6c07 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .outer_6c07 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.text_solid_3f93 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.text_solid_3f93:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.accordion-blue-3dbd {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.last-7315 {
    display: flex;
    flex-direction: column;
}

.tabs_f81e {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.motion-9c86 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.modal-5372 {
    color: var(--accent-color);
}

.yellow-e625 {
    font-size: 1.25rem;
}

.aside-right-285c {
    margin-bottom: 1rem;
}

.aside-right-285c p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.center_d0e6 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.shadow_steel_7e53 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.easy-041b {
    text-align: center;
}

.feature-e05c {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.notice-9544 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.new-617b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pro_a23a {
    margin: 2rem 0;
}

.component_hovered_d0b0 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.component_hovered_d0b0 .bottom-3a3f {
    font-size: 2rem;
    flex-shrink: 0;
}

.west_ab17 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hard-9b24 {
    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;
}

.hard-9b24:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.breadcrumb_west_6fc0 {
    font-size: 2rem;
}

.header-c009 {
    display: flex;
    flex-direction: column;
}

.icon_923d {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.liquid-c757 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.black-df2b {
    padding: var(--section-padding);
}

.input-hard-b596 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .input-hard-b596 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .input-hard-b596 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.image_ceb3 {
    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);
}

.image_ceb3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.image_ceb3 .feature-e05c {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.image_ceb3 .notice-9544 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.image_ceb3 .message-e4f4 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.article_c74f {
    margin-top: 4rem;
}

.main-8c4a {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.item-15cd {
    overflow-x: auto;
}

.large-39d6 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.large-39d6 thead {
    background: var(--accent-color);
}

.large-39d6 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.large-39d6 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.large-39d6 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.large-39d6 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.card_db5d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.thumbnail-plasma-82cd {
    max-width: 900px;
    margin: 0 auto;
}

.content-right-23ba {
    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);
}

.content-right-23ba:hover {
    border-color: var(--accent-color);
}

.hovered_c32f {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.hovered_c32f h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.upper_6f90 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.content-right-23ba.fn-active-6859 .upper_6f90 {
    transform: rotate(45deg);
}

.link_51f5 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.content-right-23ba.fn-active-6859 .link_51f5 {
    max-height: 1000px;
}

.link_51f5 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.lower-be7d {
    padding: var(--section-padding);
}

.border_narrow_8faa {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.menu_steel_c6e4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.disabled_in_0f78 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .disabled_in_0f78 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stale-b16d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.orange-c938 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.clean_72f4 {
    font-size: 2rem;
}

.highlight_d769 {
    color: var(--text-white);
    margin: 0;
}

.sidebar-black-c9c7 {
    list-style: none;
    padding: 0;
}

.sidebar-black-c9c7 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-black-c9c7 li:last-child {
    border-bottom: none;
}

.article-light-e5f8 {
    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-light-e5f8 p {
    color: var(--success-color);
    margin: 0;
}

.pattern_huge_1d04 {
    margin-top: 3rem;
}

.picture-solid-e67c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.new-baf2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .new-baf2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery_inner_ac9f {
    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);
}

.tooltip_ba86 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.gallery_inner_ac9f p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.paper_11c2 {
    padding: var(--section-padding);
}

.full_f3ed {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .full_f3ed {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hover-3278 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.hover-3278:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.outline_c04a {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.center-65c9 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.hero-action-4144 {
    flex: 1;
}

.blue-dff5 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.content_hard_d404 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.advanced-a7ef {
    color: var(--text-gray);
    line-height: 1.6;
}

.detail_5a17 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail_5a17:last-child {
    border-bottom: none;
}

/* Comparison Section */
.white-94bf {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.hard_0c32 {
    padding: var(--section-padding);
}

.backdrop-f6d6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.shade_steel_2c82 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shade_steel_2c82 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hero-bce8 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.liquid_86bb, .link_mini_291a, .card-orange-1a93 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.card-orange-1a93 {
    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 */
.thick_5068 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.highlight-9d0c {
    margin: 2rem 0;
}

.label_stale_4dc4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.copper-7946 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.small_705f {
    list-style: none;
    padding: 0;
}

.small_705f 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;
}

.small_705f li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.small_705f li:last-child {
    border-bottom: none;
}

.progress_21c5 {
    text-align: center;
    margin-top: 2rem;
}

.alert-6a33 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.background-e991 {
    padding: var(--section-padding);
}

.sidebar-gas-2dd3 {
    margin: 2rem 0;
}

.primary_last_5eef {
    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) {
    .primary_last_5eef {
        flex-direction: column;
        align-items: flex-start;
    }
}

.primary_last_5eef:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.footer-470a {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.in-8b3b {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.slow_1916 {
    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;
}

.gallery-1c07 {
    flex: 1;
}

.feature-complex-80a5 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.picture-cec4 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.notification_6ef8 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.link_cac0 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .link_cac0 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.filter-e4a8 {
    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);
}

.filter-e4a8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.filter-e4a8 .feature-e05c {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.filter-e4a8 .notice-9544 {
    color: var(--text-gray);
    font-size: 1rem;
}

.panel_b69a {
    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);
}

.active_3b08 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.active_3b08 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.component_stale_6c9d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .component_stale_6c9d {
        grid-template-columns: 1fr 1fr;
    }
}

.sidebar-light-d59b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.menu-wide-cfd6 {
    margin-bottom: 1.5rem;
}

.menu-wide-cfd6 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.menu-wide-cfd6 input,
.menu-wide-cfd6 select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--secondary-bg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    color: var(--text-white);
    font-size: 1rem;
}

.menu-wide-cfd6 input:focus,
.menu-wide-cfd6 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.fixed-dee7 {
    width: 100%;
    margin-top: 1rem;
}

.input_2bda {
    display: flex;
    align-items: center;
}

.video_a3f1 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.detail_gold_e083 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.right_da69 {
    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;
}

.thumbnail-d9bc {
    color: var(--text-gray);
}

.element-action-193c {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.popup-next-89ae {
    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);
}

.popup-next-89ae p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.gallery-solid-dfa2 {
    margin-top: 3rem;
}

.form-773d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.filter_right_b793 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.row-9d29 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.description_pressed_e7c3 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.description_pressed_e7c3:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.dirty-80f3 {
    padding: var(--section-padding);
}

.chip-down-4dab {
    margin: 2rem 0;
}

.down_3ddb {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.modal-92fe {
    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;
}

.modal-92fe:hover, .modal-92fe.fn-active-6859 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.card_3611 {
    display: none;
}

.card_3611.fn-active-6859 {
    display: block;
}

.gas-a669 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pattern_pressed_294e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.caption-f1ed h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.caption-f1ed ul {
    list-style: none;
    padding: 0;
}

.caption-f1ed ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.caption-f1ed ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.highlight-stone-5a24 {
    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 */
.overlay-dccd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.basic_d376 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.purple-a23b {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.carousel-35d8 {
    color: var(--accent-color);
    margin: 0;
}

.detail-left-df14 {
    display: flex;
    gap: 1.5rem;
}

.item-middle-d8d1 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.accordion-glass-9ccd {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.block-iron-1bba {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.block-iron-1bba.dim-7d0a {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.block-iron-1bba.message-4d6e {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.block-iron-1bba.button-out-2bbd {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.accent_pressed_245d {
    margin-top: 2rem;
}

.box_cool_9c38 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.column-2db2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .column-2db2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.description-advanced-d52b {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.search-gas-1527 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.pink_e55a {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.orange_c064 {
    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 */
.silver_e54d {
    padding: var(--section-padding);
}

.block-hot-dbff {
    margin: 2rem 0;
}

.status-dim-dfc1 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.summary-silver-2a2c {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.feature-silver-528a {
    list-style: none;
    padding: 0;
}

.feature-silver-528a 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;
}

.feature-silver-528a li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.feature-silver-528a li:last-child {
    border-bottom: none;
}

.shadow_8031 {
    margin: 2rem 0;
}

.north_7cbf {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.black_735c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .black_735c {
        grid-template-columns: repeat(2, 1fr);
    }
}

.search-13d0 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.header-green-82b0 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.border_d99f {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.header-91fd {
    margin-top: 2rem;
}

.video_advanced_50e2 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.backdrop_advanced_d56e {
    list-style: none;
    padding: 0;
}

.breadcrumb-smooth-a422 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.breadcrumb-smooth-a422 a {
    color: var(--accent-color);
    text-decoration: none;
}

.breadcrumb-smooth-a422 a:hover {
    text-decoration: underline;
}

.backdrop-72f4 {
    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 */
.content-liquid-f75e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dirty_d1ae {
    margin: 2rem 0;
}

.cool-97dd {
    margin-bottom: 3rem;
}

.cool-97dd .copper-7946 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.easy_7b5f {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.article_fb95 {
    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);
}

.article_fb95:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.selected_03be {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .selected_03be {
        grid-template-columns: repeat(4, 1fr);
    }
}

.paragraph-ca5c {
    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 */
.overlay_be64 {
    padding: var(--section-padding);
}

.container-down-e4c4 {
    margin: 2rem 0;
}

.search-e283 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.down_0cfb {
    overflow-x: auto;
    margin: 2rem 0;
}

.disabled_f469 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.media-left-6a3c {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--success-color);
    color: var(--text-white);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.breadcrumb_83b4 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.preview-8143 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .preview-8143 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.outline_3bf4 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outline_3bf4 .bottom-3a3f {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.outline_3bf4 .active-39c8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.texture_4810 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.focus-b8c8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.silver-2cc2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .silver-2cc2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fluid-f411 {
    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;
}

.fluid-f411:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.gold-18ec {
    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);
}

.hero-62f4 {
    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;
}

.last-9fd9 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.aside-slow-9781 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.menu-narrow-e8cb {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.card-wood-f6fd {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-fluid-7370 {
    color: var(--text-white);
    font-weight: 600;
}

.small_de88 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.mask_hard_0ff4 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mask_hard_0ff4 .photo_aed5 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.media-4c43 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .media-4c43 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.yellow_5687 {
    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);
}

.yellow_5687:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.yellow_5687 .feature-e05c {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.yellow_5687 .notice-9544 {
    color: var(--text-gray);
    font-size: 1rem;
}

.clean_a021 {
    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);
}

.sidebar-1a05 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.sidebar-1a05 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.input_hard_583f {
    margin: 2rem 0;
}

.static-b70d {
    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);
}

.static-b70d:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.popup_gold_177a {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.item-current-5bca {
    flex: 1;
}

.surface_advanced_4f66 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.icon_warm_103c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.down_e98c {
    margin: 2rem 0;
}

.tabs_fafe {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tabs_fafe .active-39c8 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.tabs_fafe .button-dynamic-661f {
    color: var(--text-gray);
    margin: 0;
}

.status-3691 {
    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);
}

.status-3691 .accordion_f381 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.texture_4810 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.section_c281 {
    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;
}

.table-first-2fa1 {
    flex: 1;
}

.form-right-00a1 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.aside-middle-2a4a {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.detail_purple_87f2 {
    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;
}

.nav_1f61 {
    flex: 1;
}

.purple_8ed0 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.soft-03b5 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.description-short-8746 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.highlight_13e7 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.module_first_c69a {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.module_first_c69a .photo_aed5 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.row-6987 {
    margin-top: 2rem;
}

.row-6987 .picture-solid-e67c {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.header_d8a3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.primary-f264 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .primary-f264 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.primary-f264 .easy-041b {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.sidebar-edff {
    margin: 2rem 0;
}

.advanced_0437 {
    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 */
.easy-088a {
    padding: var(--section-padding);
}

.brown_b29a {
    margin-top: 1rem;
}

.slow-35fc {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.slow-35fc li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.slow-35fc li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.title-narrow-8d81 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.grid-lower-85a0 {
    margin: 2rem 0;
}

.preview_15bf {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.thumbnail-579b {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.hero_cold_0f89 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.layout-full-a7b7 {
    margin: 2rem 0;
}

.dropdown-motion-0de5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.dropdown-motion-0de5 .copper-7946 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.row_7d87 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .row_7d87 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.text-inner-e78a {
    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);
}

.blue-6bff {
    color: var(--text-white);
    font-weight: 600;
}

.accordion-99d5 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.breadcrumb_f684 {
    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);
}

.breadcrumb_f684 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.full-ed29 {
    padding: var(--section-padding);
}

.right_dbaf {
    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;
}

.right_dbaf:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.menu-liquid-33f4 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-liquid-33f4 .tooltip_ba86 {
    font-size: 2rem;
    flex-shrink: 0;
}

.menu-liquid-33f4 .text_0d1e {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.backdrop-4bac {
    flex: 1;
}

.huge_bec8 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.wrapper_b4dd {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wrapper_b4dd li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.wrapper_b4dd li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.layout_c9c5 {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.layout_c9c5 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.layout_c9c5 strong {
    color: var(--warning-color);
}

/* Slots Section */
.video-thick-770e {
    padding: var(--section-padding);
}

.container-39e6 {
    margin: 2rem 0;
}

/* Table Games Section */
.wrapper_light_3845 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.advanced_212d {
    margin: 2rem 0;
}

.video-68e5 {
    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);
}

.video-68e5:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.video-68e5 .wrapper_smooth_ea09 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.video-68e5 .warm-8f58 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.text-advanced-a330 {
    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);
}

.text-advanced-a330 .accordion_f381 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.frame-8679 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.header-fixed-233f {
    margin: 2rem 0;
}

.texture-94b1 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.sidebar-current-f6e8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.top_98d7 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.avatar_e152 {
    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);
}

.avatar_e152:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.avatar_e152.fn-active-6859 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.content-next-a392 {
    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);
}

.narrow-ef0a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.narrow-ef0a strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.input-gold-a18f {
    padding: var(--section-padding);
}

.west-eef4 {
    margin: 2rem 0;
}

.row-1bfe {
    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);
}

.row-1bfe:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .row-1bfe {
        flex-direction: column;
        align-items: flex-start;
    }
}

.background-bf38 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.avatar-outer-761a {
    flex: 1;
}

.lite_1200 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo_5c90 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.fluid-ec2c {
    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;
}

.layout-bright-1660 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.tertiary_e95d {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cold-7088 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.pattern-next-4cc0 {
    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;
}

.pattern-next-4cc0:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.row_paper_908a {
    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);
}

.panel-da89 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.panel-da89 strong {
    color: var(--accent-color);
}

/* New Games Section */
.south_953f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.banner-9269 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .banner-9269 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .banner-9269 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.outer_7cb0 {
    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;
}

.outer_7cb0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.plasma_3970 {
    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;
}

.progress_e3cf {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.cold-84c0 {
    font-size: 2rem;
}

.purple-4ea0 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.tall_68c5 {
    flex: 1;
}

.under-dccb {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.pagination-lite-47b0 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.sidebar-prev-8443 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.highlight_0a2c {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.focus-2355 {
    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;
}

.in-69d6 {
    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;
}

.in-69d6:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.link_huge_0ba5 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.focused-c059 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.sidebar-pressed-9c7c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .sidebar-pressed-9c7c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wood_3f9d {
    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);
}

.pattern_bronze_20a7 {
    color: var(--text-white);
    font-weight: 600;
}

.banner_narrow_ff6e {
    color: var(--accent-color);
    font-weight: 600;
}

.table-fluid-ea39 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.table-fluid-ea39 strong {
    color: var(--accent-color);
}

/* Security Section */
.article-f511 {
    padding: var(--section-padding);
}

/* Benefits Section */
.tertiary_plasma_3dc4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.tag_b396 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.pressed_36ca {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.first-cd50 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.narrow-7905 {
    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) {
    .narrow-7905 {
        flex-direction: column;
        gap: 1rem;
    }
}

.narrow-7905:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.narrow-7905 .detail_purple_87f2 {
    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;
}

.narrow-7905 .nav_1f61 {
    flex: 1;
}

.narrow-7905 .purple_8ed0 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.narrow-7905 .soft-03b5 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.rough-8979 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.rough-8979 .full-0cf7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.rough-8979 .media_thick_5a9d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rough-8979 .media_thick_5a9d li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.rough-8979 .media_thick_5a9d li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.brown-670b {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.description-dc2a {
    padding: var(--section-padding);
}

.gallery_current_708a {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .gallery_current_708a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.popup-cold-9736 {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.popup-cold-9736:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.popup-cold-9736 .accordion_8db3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.popup-cold-9736 .focused-3fcb {
    flex: 1;
}

.popup-cold-9736 .hover_9c9d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.popup-cold-9736 .sidebar-white-f323 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.container-light-63f4 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.container-light-63f4 .dropdown_c695 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.container-light-63f4 .preview_huge_bf19 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.container-light-63f4 .preview_huge_bf19 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-light-63f4 .preview_huge_bf19 li:last-child {
    border-bottom: none;
}

.container-light-63f4 .preview_huge_bf19 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-light-63f4 .preview_huge_bf19 li strong {
    color: var(--text-white);
}

.shadow-b691 {
    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);
}

.shadow-b691 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.shadow-b691 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.pagination_2826 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.warm-e9e2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .warm-e9e2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.photo-new-6501 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.photo-new-6501:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.silver-7a5e {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.warm-660f {
    font-size: 2rem;
}

.grid_61cb {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.copper_f3d7 {
    flex: 1;
}

.text_stale_e0a0 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.text_stale_e0a0 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.text_stale_e0a0 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.heading_cold_cbd1 {
    margin-top: 3rem;
}

.status-dim-dfc1 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.summary-silver-2a2c {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.feature-silver-528a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-silver-528a li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.feature-silver-528a li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.feature-silver-528a li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.thumbnail-last-479d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.north-658d {
    margin: 2rem 0;
}

.info_hovered_fd03 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.info_hovered_fd03 .copper-7946 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.panel_smooth_6de4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .panel_smooth_6de4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.old_2edc {
    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);
}

.old_2edc:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.brown-17cf {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.row_3e9e {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.east_65c1 {
    padding: var(--section-padding);
}

.upper-8a44 {
    margin: 2rem 0;
}

.footer_e5af {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .footer_e5af {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer_e5af {
        grid-template-columns: repeat(3, 1fr);
    }
}

.copper_fe38 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.copper_fe38:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.summary-b6fa {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.disabled_aad6 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.pink-ecbe {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pink-ecbe.list_9538 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.inner-55f1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.icon_pink_ea59 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.image-ace3 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pattern-dirty-f453 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.container_72da {
    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);
}

.container_72da p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.container_72da strong {
    color: var(--accent-color);
}

/* Update Log Section */
.easy_cd36 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.green_4643 {
    margin: 2rem 0;
}

.feature_b2e9 {
    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) {
    .feature_b2e9 {
        flex-direction: column;
        gap: 1rem;
    }
}

.feature_b2e9:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.feature_b2e9::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);
}

.pattern_f6c2 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.under_90fc {
    flex: 1;
}

.grid_soft_3240 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.sort-f188 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sort-f188 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.column-action-a30a {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gas-1b35 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.grid_smooth_41bf {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .grid_smooth_41bf {
        grid-template-columns: repeat(3, 1fr);
    }
}

.shade_cb57 {
    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);
}

.tabs-73e9 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.image-easy-e0f7 {
    flex: 1;
}

.video_south_2534 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.component-9afd {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.next-5ba8 {
    margin-top: 2rem;
    text-align: center;
}

.detail-bright-9b56 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.detail-bright-9b56 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.shade_south_33c0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shade_south_33c0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.top_7ccd {
    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);
}

.top_7ccd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.top_7ccd .up_d3e6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.top_7ccd .top_af51 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.top_7ccd .shade-prev-a68c {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.top_7ccd .label-ca55 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.disabled_16c4 {
    padding: var(--section-padding);
}

.main_84bd .west_3a39 {
    flex: 1;
}

/* Promo Calendar Section */
.thumbnail_north_3977 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.footer-north-bf38 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .footer-north-bf38 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.liquid_a6eb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.preview-last-3d15 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.notice-c642 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.focus-center-04f7 {
    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);
}

.fast-be27 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.narrow_ae93 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.bronze_a984 {
    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);
}

.bronze_a984 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.bronze_a984 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.plasma-26fb {
    padding: var(--section-padding);
}

.pagination-gas-6455 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .pagination-gas-6455 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.chip_105d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.progress-south-33ee {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hidden_49cd {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hidden_49cd li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.heading-slow-9140 {
    margin-top: 3rem;
}

.heading-slow-9140 .status-dim-dfc1 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.heading-slow-9140 .summary-silver-2a2c {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.heading-slow-9140 .feature-silver-528a {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.heading-slow-9140 .feature-silver-528a li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.heading-slow-9140 .feature-silver-528a li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.heading-slow-9140 .feature-silver-528a li strong {
    color: var(--warning-color);
}

.container-advanced-633b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.container-advanced-633b strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.mask_slow_1a0f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.advanced_e116 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .advanced_e116 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tooltip_fixed_51f0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tooltip_fixed_51f0 .copper-7946 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.brown-938e {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.easy_c31f {
    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);
}

.easy_c31f:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.first-189a {
    font-size: 2rem;
    flex-shrink: 0;
}

.outer_8087 {
    flex: 1;
}

.link-soft-e9ea {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.gold_3b55 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.focus-dark-f0e8 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.aside_down_38a5 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.texture_huge_842f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .texture_huge_842f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.new_02d9 {
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.new_02d9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.advanced_2e3d {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.dim-ed76 {
    color: var(--text-gray);
    font-size: 1rem;
}

.active_3b08 {
    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);
}

.out_a682 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.out_a682 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.card-5388 { 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; }
.picture_thick_5d72, .text-north-1f7d { max-width:100%; height:auto; }

.pressed-13e4, .row-inner-d9cf, .info-green-eacb { white-space:normal; }

.hover-7633,
.highlight-large-022a,
.surface_up_a637,
.shade_south_33c0,
.down_e98c,
.menu-8fae {
  flex-wrap:wrap;
}

[class*="grid"],
.texture_huge_842f,
.footer_e5af,
.active_a7a1 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.dropdown-650f img,
.highlight-large-022a img,
.carousel-copper-87af img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.hover-fresh-9793, .row_63cd,
.nav-down-3b68, .row-lite-77d1 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.item-15cd { width:100%; overflow-x:auto; }
.item-15cd table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.popup-920a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .popup-920a {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.breadcrumb_yellow_1dc4 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.input-hard-b596,
.in-23bc,
.backdrop-be5c,
.sidebar_ef76,
.link_cac0,
.texture_huge_842f,
.footer_e5af,
.active_a7a1,
.modal_b6aa,
.west-eef4,
.popup-920a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .input-hard-b596,
  .in-23bc,
  .backdrop-be5c,
  .sidebar_ef76,
  .link_cac0,
  .texture_huge_842f,
  .footer_e5af,
  .active_a7a1,
  .modal_b6aa,
  .west-eef4,
  .popup-920a {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.image_ceb3,
.filter-e4a8,
.new_02d9,
.widget-light-b396,
.copper_fe38,
.static_4948,
.row-1bfe,
.breadcrumb_yellow_1dc4 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.hover-short-9951,
.middle_f27f,
.large_fdd3 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hover-short-9951 > *,
.middle_f27f > *,
.large_fdd3 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 1e93 */
.promo-block-s8 {
  padding: 0.1rem;
  font-size: 14px;
  line-height: 1.2;
}
