/* {$keywords} - Main Stylesheet */
/* Modern Brazilian Gaming Platform Styles */

/* CSS Reset and Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* CSS Variables - 深海蓝青绿主题 */
:root {
    /* 背景色系 */
    --primary-bg: #0f172a;      /* 深海蓝 - 主背景 */
    --secondary-bg: #1e293b;     /* 中蓝 - 卡片背景 */
    --tertiary-bg: #334155;     /* 浅蓝 - 悬浮背景 */
    
    /* 强调色系 */
    --accent-color: #06b6d4;     /* 青绿 - 主要CTA */
    --accent-hover: #0891b2;     /* 深青绿 - 悬停状态 */
    --accent-light: #67e8f9;    /* 浅青绿 - 高亮文字 */
    
    /* 文字色系 */
    --text-white: #f8fafc;      /* 纯白 - 主要文字 */
    --text-gray: #cbd5e1;       /* 淡灰 - 次要文字 */
    --text-muted: #94a3b8;      /* 灰色 - 辅助文字 */
    
    /* 功能色系 */
    --success-color: #10b981;   /* 翠绿 - 成功状态 */
    --danger-color: #ef4444;    /* 红色 - 错误状态 */
    --warning-color: #f97316;   /* 橙色 - 警告状态 */
    --info-color: #06b6d4;      /* 青绿 - 信息提示 */
    
    /* 渐变色系 */
    --primary-gradient: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    --hero-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --card-gradient: linear-gradient(145deg, #1e293b 0%, #334155 100%);
    
    /* Shadows - 深海蓝青绿主题 */
    --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.15);
    --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.2);
    --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.25);
    --shadow-accent: 0 8px 32px rgba(6, 182, 212, 0.4);
    --shadow-glow: 0 0 30px rgba(6, 182, 212, 0.3);
    --shadow-vip: 0 0 20px rgba(6, 182, 212, 0.3);
    
    /* Typography */
    --font-primary: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Roboto Slab', Georgia, serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 4rem 0;
    --element-spacing: 1.5rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--primary-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.chip-7369 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.bright-9dd6 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .bright-9dd6 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .bright-9dd6 {
        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 */
.outline_da1a {
    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);
}

.modal_198b {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .modal_198b {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .section-6343 {
        grid-column: 1;
    }
    
    .basic_3a15 {
        grid-column: 2;
    }
    
    .badge-fast-798c {
        grid-column: 3;
    }
}

.section-6343 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.section-6343:hover img {
    transform: scale(1.05);
}

/* Navigation */
.gallery_27f8 {
    display: none;
}

@media (min-width: 1024px) {
    .gallery_27f8 {
        display: block;
    }
}

/* Grouped Navigation */
.warm-f5f7 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.tooltip-70e1 {
    position: relative;
}

.menu_lite_0203 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.tooltip-70e1 .breadcrumb-action-9c37 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.breadcrumb-action-9c37 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.primary-eb95 {
    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;
}

.primary-eb95:hover,
.primary-eb95.fn-active-9521 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.heading-4730 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .heading-4730 {
        display: flex;
    }
}

/* Mobile Register Button */
.basic_3a15 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .basic_3a15 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.dropdown_48fd {
    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;
}

.dropdown_48fd::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 */
.badge-fast-798c {
    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) {
    .badge-fast-798c {
        display: none;
    }
}

.badge-fast-798c span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.badge-fast-798c.fn-active-9521 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.badge-fast-798c.fn-active-9521 span:nth-child(2) {
    opacity: 0;
}

.badge-fast-798c.fn-active-9521 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.fluid-09ea {
    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;
}

.fluid-09ea.fn-active-9521 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.steel-59c9 {
    overflow: hidden;
}

.table_2fcb {
    list-style: none;
    padding: 0.75rem 0;
}

.tabs-839b {
    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;
}

.tabs-839b:hover,
.tabs-839b.fn-active-9521 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.tabs-839b.solid-d8f9 {
    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;
}

.tabs-839b.solid-d8f9::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 */
.motion-526e {
    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;
}

.shadow_north_af88 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.shadow_north_af88:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.article_east_1c68 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.article_east_1c68:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.component_f320 {
    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;
}

.component_f320:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.title-complex-1b6d {
    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;
}

.preview-83c5 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.preview-83c5:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.tabs-8ea4 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.tabs-8ea4:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.liquid-e207 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.liquid-e207: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);
}

.dynamic-4ebf {
    font-size: 1em;
    font-weight: 700;
}

.block-4ad1 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.slider-8d93 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.slider-8d93::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;
}

.heading-03e9 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .heading-03e9 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.list_24fc {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.pattern-9bdb {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.old_e20c {
    margin-bottom: 2rem;
}

.hovered_b4fb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .hovered_b4fb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.modal-right-88b1 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

.carousel-a502 {
    font-size: 1.5rem;
}

.fixed_1e48 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.photo_e162 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-2479 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.logo-2479:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.container-7a62 {
    text-align: center;
    margin-bottom: 3rem;
}

.mask_static_772e {
    margin-bottom: 1rem;
}

.paper_d30f {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.filter-focused-5f2b {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .filter-focused-5f2b {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .filter-focused-5f2b.banner_stale_70ac {
        direction: rtl;
    }
    
    .filter-focused-5f2b.banner_stale_70ac > * {
        direction: ltr;
    }
}

.outline-green-963b {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.outline-green-963b:first-child {
    margin-top: 0;
}

.widget_e8c5 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.modal-ad37 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.modal-ad37:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.table-east-9b2f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .table-east-9b2f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.outline_gold_16d4 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.outline_purple_6fac {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.search_c335 {
    list-style: none;
}

.search_c335 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.search_c335 li:last-child {
    border-bottom: none;
}

/* Games Features */
.block_basic_8dc3 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.wood_f060 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.menu-full-b3c5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.header_north_4823 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.paragraph_5f21 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.image_7a98 {
    margin: 2rem 0;
}

.bronze-8933 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.aside-31d0 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.west_a644 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.texture_stale_4259 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.center_8143 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .center_8143 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.progress_center_d5f2 {
    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);
}

.progress_center_d5f2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.mask-black-4859 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.liquid_94ee {
    font-size: 1.5rem;
}

.mini_0a17 {
    color: var(--accent-color);
    margin: 0;
}

.card-over-8248 {
    list-style: none;
}

.card-over-8248 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.card-over-8248 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.popup_3406 {
    margin: 2rem 0;
}

.aside-down-4ccf {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.old_fb20 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .old_fb20 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.modal_blue_3bbd {
    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);
}

.gradient-active-7239 {
    font-size: 1.25rem;
}

.gradient-dynamic-600b {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.sort_current_c05c,
.secondary_upper_e8d2 {
    text-align: center;
    margin: 2rem 0;
}

.black-9d10,
.row_de8a {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.bottom-9b84 {
    margin: 2rem 0;
    text-align: center;
}

.short_810e {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.short_810e::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;
}

.middle-698d {
    position: relative;
    z-index: 1;
}

.message-steel-bfdd {
    margin-bottom: 1rem;
}

.chip-d7f6 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.progress-first-3e44 {
    margin-bottom: 3rem;
}

.tall_853b {
    margin-top: 3rem;
}

.carousel-c758 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .carousel-c758 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.carousel-c758 .modal-right-88b1 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.blue-73b3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.backdrop_tiny_2a19 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.full-44da {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.out_d4af {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .out_d4af {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .out_d4af {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.progress_glass_d316 {
    margin-bottom: 1rem;
}

.active_9ae9 img {
    margin-bottom: 1rem;
}

.gold_b72a {
    color: var(--text-gray);
    line-height: 1.6;
}

.new-1f93 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.thumbnail-green-6a7a {
    list-style: none;
}

.thumbnail-green-6a7a li {
    margin-bottom: 0.5rem;
}

.thumbnail-green-6a7a a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.thumbnail-green-6a7a a:hover {
    color: var(--accent-color);
}

.hard_757d {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.text_solid_afe0 {
    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);
}

.text_solid_afe0:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.description-07c1 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.description-07c1 p {
    margin-bottom: 0.25rem;
}

.preview-fc3e {
    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) {
    .preview-fc3e {
        flex-direction: row;
    }
}

.old-285a {
    text-align: center;
}

@media (min-width: 768px) {
    .old-285a {
        text-align: left;
    }
}

.old-285a p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.slow_b85a {
    font-size: 0.75rem !important;
}

.center-69a2 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.tabs-cfea {
    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);
    }
}

.shadow_7a22 {
    animation: fadeInUp 0.6s ease-out;
}

.row-in-53d0 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.hero-large-489c {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hero-large-489c {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.breadcrumb_3087 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .breadcrumb_3087 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.header_581f {
    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);
}

.header_581f .menu-full-b3c5 {
    font-size: 1.25rem;
}

.header_581f .tooltip-pro-3120 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.column_5138 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .column_5138 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.notice_6389 {
    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);
}

.notice_6389:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.feature_6ea5 {
    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);
}

.last_4341 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.red_748a {
    color: var(--text-gray);
    line-height: 1.6;
}

.outer-f7b2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.banner-3fea {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.banner-3fea .header_north_4823 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.banner-3fea .paragraph_5f21 {
    color: var(--text-gray);
    line-height: 1.6;
}

.article-white-ba5f {
    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);
}

.accordion-short-e8ef {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.accordion-short-e8ef img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.accordion-short-e8ef img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.stale-d554 {
    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);
}

.active-e8a7 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hover-active-baf0 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hover-active-baf0 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.hover-active-baf0 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);
}

.hover-active-baf0 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.hover-active-baf0 input::placeholder {
    color: var(--text-muted);
}

.label_purple_da64 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.hidden-45e1 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.hidden-45e1 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.dropdown_gas_59b4 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.dropdown_gas_59b4:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.old_fb20 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .old_fb20 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.modal_blue_3bbd {
    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);
}

.modal_blue_3bbd .gradient-active-7239 {
    font-size: 1.25rem;
}

.modal_blue_3bbd .gradient-dynamic-600b {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.item_b258 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tertiary-25e6 {
    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);
}

.tertiary-25e6 .menu-full-b3c5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tertiary-25e6 .header_north_4823 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tertiary-25e6 .paragraph_5f21 {
    color: var(--text-gray);
    line-height: 1.6;
}

.simple_9eb3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.slow_0492 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.slow_0492 .title-cc24 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.slow_0492 .fixed-e77f {
    color: var(--text-gray);
    line-height: 1.6;
}

.main_36ce {
    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);
}

.content_white_4d24 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .content_white_4d24 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.layout_easy_bfd1 {
    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);
}

.layout_easy_bfd1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gradient_843b {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.progress_6277 {
    flex: 1;
}

.link_bronze_416a {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.paragraph-clean-b9f7 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cool_5da1 {
    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);
}

.cool_5da1:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.hard-a55c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hard-a55c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.primary_2ce7 {
    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);
}

.primary_2ce7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.simple_78f0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.secondary-e855 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.main-f4b6 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.border-9c72 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.menu_stone_fd1c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.old-f150 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.top-0a67 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.top-0a67 .article-88b4 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.top-0a67 .info-50cc {
    color: var(--text-gray);
    line-height: 1.6;
}

.alert-ce7d {
    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);
}

.pink-ad56 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.title_bd40 {
    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);
}

.title_bd40 .menu-full-b3c5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.title_bd40 .header_north_4823 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.title_bd40 .paragraph_5f21 {
    color: var(--text-gray);
    line-height: 1.6;
}

.left-0b71 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .left-0b71 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fluid-f055 {
    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);
}

.fluid-f055:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.wide_03fa {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .wide_03fa {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sort_ed47 {
    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);
}

.sort_ed47:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.block-2b0c {
    font-size: 2rem;
    flex-shrink: 0;
}

.avatar-da45 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.aside-31d0 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.photo-5be4 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.gradient-fixed-8e9a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.media_focused_7156 {
    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);
}

.media_focused_7156:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.header_selected_4dcf {
    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);
}

.input_8b86 {
    flex: 1;
}

.next-0dd8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.picture-down-eb50 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.pattern_north_6098 {
    color: var(--text-gray);
    line-height: 1.6;
}

.fast_09a5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dropdown-91ed {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dropdown-91ed .title-cc24 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.dropdown-91ed .fixed-e77f {
    color: var(--text-gray);
    line-height: 1.6;
}

.secondary_upper_e8d2 {
    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);
}

.tall_aa9e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tall_aa9e {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.inner-6461 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .inner-6461 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.detail_90a8 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.detail_90a8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.info-0d8f {
    font-size: 2rem;
    flex-shrink: 0;
}

.motion_6a66 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.active_prev_c4db {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.video_5c7f {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.gas-0b9d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.up_0a1f {
    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);
}

.current-c905 {
    font-size: 2rem;
    flex-shrink: 0;
}

.alert_warm_1f47 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.paragraph-dark-2a17 {
    color: var(--text-gray);
    line-height: 1.6;
}

.pink-ad56 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.title_bd40 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.title_bd40 .header_north_4823 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.title_bd40 .paragraph_5f21 {
    color: var(--text-gray);
    line-height: 1.6;
}

.breadcrumb_thick_6aad {
    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);
}

.progress-80ec {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .progress-80ec {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .progress-80ec {
        grid-template-columns: repeat(4, 1fr);
    }
}

.focused-df96 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.focused-df96:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.fresh-dfbf {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.smooth-d91f {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.status_large_19d9 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.menu-b5c1 {
    padding: 1.5rem;
}

.popup-fluid-3e2d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.link-ca0e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-ca0e 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;
}

.link-ca0e li:last-child {
    border-bottom: none;
}

.link-ca0e li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.content_1496 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .content_1496 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.layout-8bf7 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.layout-8bf7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.module_bright_bc9b {
    font-size: 2rem;
    flex-shrink: 0;
}

.avatar-8efe {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stale-9be7 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.modal_rough_168e {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.list_8962 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wide_0013 {
    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);
}

.layout-brown-f347 {
    font-size: 2rem;
    flex-shrink: 0;
}

.shadow_5556 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.iron_32c5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.copper-3eaa {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.huge_6129 {
    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);
}

.out_9509 {
    text-align: center;
}

.prev-d0bd {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.clean_94f9 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.active_a876 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.accordion_2041 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.accordion_2041 .header_north_4823 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.accordion_2041 .paragraph_5f21 {
    color: var(--text-gray);
    line-height: 1.6;
}

.inner_1cf6 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .inner_1cf6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .inner_1cf6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.bright_fd4c {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.bright_fd4c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.primary_6c32 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.bottom_ba10 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.header_north_4823 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.white_f808 {
    padding: 1.5rem;
}

.paragraph_5f21 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.green-d5d9 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.green-d5d9 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;
}

.green-d5d9 li:last-child {
    border-bottom: none;
}

.green-d5d9 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.image_old_03b6 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.info-5a00 {
    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);
}

.info-5a00:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.column_e58b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.logo_9155 {
    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);
}

.feature_6ea5 {
    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;
}

.last_4341 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.red_748a {
    color: var(--text-gray);
    line-height: 1.6;
}

.row-793e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.layout-out-0fcf {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.bronze-bca5 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.label_down_4a43 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.static_4276 {
    display: flex;
    gap: 1rem;
}

.static_4276 .layout-selected-ff68 {
    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;
}

.media-static-ae97 {
    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);
}

.logo-dim-08bb {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.shadow_south_466b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shadow_south_466b li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.shadow_south_466b li:last-child {
    border-bottom: none;
}

.shadow_south_466b li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.yellow_8857 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .yellow_8857 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .yellow_8857 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.module-action-0eda {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.module-action-0eda:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.info_wood_b3f4 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.advanced_ba68 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.article-88b4 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.sort-advanced-5071 {
    font-size: 1rem;
}

.feature-gas-d1ad {
    padding: 1.5rem;
}

.info-50cc {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.status_6c24 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.status_6c24 .out_9509 {
    text-align: center;
}

.status_6c24 .clean_94f9 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.status_6c24 .card_3c55 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.filter-left-22e2 {
    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);
}

.filter-left-22e2:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.mask_4bf8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .mask_4bf8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.search-5503 {
    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);
}

.search-5503:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.texture_over_bee1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.grid_f0a4 {
    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);
}

.pagination-ba94 {
    font-size: 2rem;
    flex-shrink: 0;
}

.surface_dirty_47f3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.filter_pro_3e16 {
    color: var(--text-gray);
    line-height: 1.6;
}

.gallery-pro-4580 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.soft-0ca3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.card_61e2 {
    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);
}

.button-1cc3 {
    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;
}

.button-1cc3.input-silver-1757 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.button-1cc3.component-def6 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.button-1cc3.modal-165c {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.button-1cc3.widget_over_02a3 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.button-1cc3.hard_e688 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.border-north-0e25 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.west-c78d {
    color: var(--text-gray);
    line-height: 1.6;
}

.tall-4e61 {
    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);
}

.article-blue-7088 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.simple_9eb3 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.simple_9eb3 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;
}

.simple_9eb3 li:last-child {
    border-bottom: none;
}

.simple_9eb3 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.primary_133e {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .primary_133e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .primary_133e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.full_9465 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.full_9465:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.full_9465.popup_in_c05f {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .full_9465.popup_in_c05f {
        grid-column: span 3;
    }
}

.photo-e22b {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.full_9465.popup_in_c05f .photo-e22b {
    background: rgba(6, 182, 212, 0.1);
}

.link_abdf {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.fluid-6def {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.full_9465.popup_in_c05f .fluid-6def {
    color: var(--info-color);
}

.column-focused-c52c {
    padding: 1.5rem;
    text-align: center;
}

.wood_4791 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.full_9465.popup_in_c05f .wood_4791 {
    color: var(--info-color);
}

.hidden-5478 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.fixed-39b0 {
    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 */
.tertiary_outer_d3de {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .tertiary_outer_d3de {
        grid-template-columns: repeat(4, 1fr);
    }
}

.box-e008 {
    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);
}

.box-e008:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.nav-slow-aed8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tertiary-25e6 {
    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);
}

.gradient-active-7239 {
    font-size: 2rem;
    flex-shrink: 0;
}

.badge_9a0b {
    flex: 1;
}

.aside-down-4ccf {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.first-9e43 {
    color: var(--text-gray);
    line-height: 1.6;
}

.focus_paper_3f14 {
    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);
}

.active-eb8b {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.list-d947 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tabs-cfea {
    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);
}

.plasma_c098 {
  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);
}

.plasma_c098 .out_9509 {
    text-align: center;
}

.plasma_c098 .prev-d0bd {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.plasma_c098 .clean_94f9 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.paragraph-ff96 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.simple_3c46 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.widget_4533 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.layout_smooth_28b8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.detail_55bb {
    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);
}

.carousel_2c26 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.light-8a45 {
    color: var(--text-gray);
    line-height: 1.6;
}

.soft-570e {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .soft-570e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .soft-570e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.message-wide-5ab8 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.message-wide-5ab8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.row_dbfb {
    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);
}

.medium-7584 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.out_048e {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.video_over_fde2 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.video_over_fde2.tertiary_fixed_34fc {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.video_over_fde2.huge-15e3 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.video_over_fde2.east-0102 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.gallery_simple_3692 {
    padding: 1.5rem;
    text-align: center;
}

.notification-selected-1b61 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.orange_c3e0 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.orange_c3e0 .carousel-upper-8e38 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.new-be5e {
    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);
}

.new-be5e:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.element-e1ac {
  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);
}

.detail-c4d0 {
    text-align: center;
}

.detail-c4d0 .prev-d0bd {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.detail-c4d0 .clean_94f9 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.avatar-1390 { text-align: center; }
.table-fb8a { text-align: left; }
.image-a1d1 { text-align: right; }

.iron-2273 { margin-bottom: 0; }
.button-pro-2afc { margin-bottom: 0.5rem; }
.container_selected_2c17 { margin-bottom: 1rem; }
.table-3103 { margin-bottom: 1.5rem; }
.pagination_center_7e83 { margin-bottom: 2rem; }

.modal-9aa6 { margin-top: 0; }
.media-e48a { margin-top: 0.5rem; }
.button_2e03 { margin-top: 1rem; }
.wide-5774 { margin-top: 1.5rem; }
.steel-d84c { margin-top: 2rem; }

.fn-hidden-9521 { display: none; }
.fn-visible-9521 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .slider-8d93 {
        padding: 6rem 0 3rem;
    }
    
    .heading-03e9 {
        text-align: center;
    }
    
    .filter-focused-5f2b {
        text-align: center;
    }
    
    .hovered_b4fb {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .outline_da1a,
    .fluid-09ea,
    .short_810e,
    .full-44da {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .slider-8d93 {
        background: none;
    }
}

/* Providers Section */
.secondary_easy_1add {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.caption-cd86 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .caption-cd86 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .caption-cd86 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.slow-6300 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.slow-6300:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.accent_lower_a23f {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.static_f49a {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.glass-13d8 {
    list-style: none;
    padding: 0;
}

.glass-13d8 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.glass-13d8 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.black_ba97 {
    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);
}

.black_ba97 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.title-dynamic-0d0c {
    padding: var(--section-padding);
}

.tertiary_small_b313 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tertiary_small_b313 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.logo-tall-7831 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.logo-tall-7831:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.gallery-f2c1 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.stone_f59f {
    display: flex;
    flex-direction: column;
}

.pressed_99d8 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.north-28d0 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.top-b9fa {
    color: var(--accent-color);
}

.middle-ed3a {
    font-size: 1.25rem;
}

.banner-pressed-b494 {
    margin-bottom: 1rem;
}

.banner-pressed-b494 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.pagination-cool-1703 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.gold-127e {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.out_9509 {
    text-align: center;
}

.prev-d0bd {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.clean_94f9 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.slow_e28e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.easy_9c19 {
    margin: 2rem 0;
}

.grid-4ad9 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.grid-4ad9 .menu-full-b3c5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.frame_9bdf {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.container_70e6 {
    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;
}

.container_70e6:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.cool-6862 {
    font-size: 2rem;
}

.south-2959 {
    display: flex;
    flex-direction: column;
}

.top-655c {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.disabled-center-36dc {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.solid_a9ad {
    padding: var(--section-padding);
}

.grid_c2b2 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .grid_c2b2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid_c2b2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.row-fdea {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
    transition: var(--transition-normal);
}

.row-fdea:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.row-fdea .prev-d0bd {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.row-fdea .clean_94f9 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.row-fdea .disabled-hot-3bf7 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.link_tiny_a4f5 {
    margin-top: 4rem;
}

.layout_6c82 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.table_4fcd {
    overflow-x: auto;
}

.west_97a2 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.west_97a2 thead {
    background: var(--accent-color);
}

.west_97a2 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.west_97a2 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.west_97a2 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.west_97a2 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.badge_orange_81b5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.next_2bbe {
    max-width: 900px;
    margin: 0 auto;
}

.text_159d {
    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);
}

.text_159d:hover {
    border-color: var(--accent-color);
}

.bottom_5d1e {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.bottom_5d1e h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.clean_81aa {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.text_159d.fn-active-9521 .clean_81aa {
    transform: rotate(45deg);
}

.prev-01b1 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.text_159d.fn-active-9521 .prev-01b1 {
    max-height: 1000px;
}

.prev-01b1 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.rough-fe68 {
    padding: var(--section-padding);
}

.accordion-short-e8ef {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.wood_b16e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.feature-89f8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .feature-89f8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form_4a48 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.silver-5725 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.message_5ef4 {
    font-size: 2rem;
}

.blue-e007 {
    color: var(--text-white);
    margin: 0;
}

.short-1156 {
    list-style: none;
    padding: 0;
}

.short-1156 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.short-1156 li:last-child {
    border-bottom: none;
}

.cool_3347 {
    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);
}

.cool_3347 p {
    color: var(--success-color);
    margin: 0;
}

.fluid-3bd3 {
    margin-top: 3rem;
}

.logo-dim-08bb {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.summary_in_62bd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .summary_in_62bd {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tertiary_red_6677 {
    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);
}

.carousel_7133 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.tertiary_red_6677 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.panel-hot-aeb9 {
    padding: var(--section-padding);
}

.backdrop-0333 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .backdrop-0333 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.inner_def3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.inner_def3:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.tag_a31f {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.warm-e48a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.paragraph_51a1 {
    flex: 1;
}

.narrow-6d23 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.pagination_hot_5649 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.south_e63d {
    color: var(--text-gray);
    line-height: 1.6;
}

.fluid_887f {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fluid_887f:last-child {
    border-bottom: none;
}

/* Comparison Section */
.picture-c77f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.warm-8d6f {
    padding: var(--section-padding);
}

.slider_58e2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.secondary-north-6b28 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .secondary-north-6b28 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.main_action_c8a8 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.orange_e206, .outer-7e23, .frame_hard_cc3c {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.frame_hard_cc3c {
    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 */
.tag-gold-f762 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.description-brown-e03d {
    margin: 2rem 0;
}

.shadow_bottom_3092 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.video-static-68ee {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.text_pressed_fa4d {
    list-style: none;
    padding: 0;
}

.text_pressed_fa4d li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 1.5rem;
    position: relative;
}

.text_pressed_fa4d li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.text_pressed_fa4d li:last-child {
    border-bottom: none;
}

.accent_dark_8547 {
    text-align: center;
    margin-top: 2rem;
}

.mini_9d79 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.short_2308 {
    padding: var(--section-padding);
}

.widget_dim_4179 {
    margin: 2rem 0;
}

.table-pink-3c42 {
    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) {
    .table-pink-3c42 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.table-pink-3c42:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.photo_a112 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.bottom_1270 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.south-b877 {
    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;
}

.video-01c8 {
    flex: 1;
}

.modal_right_dba6 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.center_a5fc {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.nav-b605 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.link-bb59 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .link-bb59 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.media-15c2 {
    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);
}

.media-15c2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.media-15c2 .prev-d0bd {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.media-15c2 .clean_94f9 {
    color: var(--text-gray);
    font-size: 1rem;
}

.cold_7e0e {
    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);
}

.red-a5c6 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.red-a5c6 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.hidden_0ed5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .hidden_0ed5 {
        grid-template-columns: 1fr 1fr;
    }
}

.secondary_d742 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.table-7252 {
    margin-bottom: 1.5rem;
}

.table-7252 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.table-7252 input,
.table-7252 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;
}

.table-7252 input:focus,
.table-7252 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.dim_c758 {
    width: 100%;
    margin-top: 1rem;
}

.border-left-f761 {
    display: flex;
    align-items: center;
}

.active-solid-0204 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.header-gold-2641 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.hero-bbc1 {
    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;
}

.rough-2b25 {
    color: var(--text-gray);
}

.in-51ac {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.focus-6199 {
    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);
}

.focus-6199 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.modal-iron-9b8c {
    margin-top: 3rem;
}

.backdrop-1862 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.accordion_dbec {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.main-99b2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.link-fcf4 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.link-fcf4:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.texture_west_6742 {
    padding: var(--section-padding);
}

.secondary_2cd7 {
    margin: 2rem 0;
}

.picture-large-816e {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.widget_clean_2d5d {
    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;
}

.widget_clean_2d5d:hover, .widget_clean_2d5d.fn-active-9521 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.stale_6657 {
    display: none;
}

.stale_6657.fn-active-9521 {
    display: block;
}

.icon-glass-d1c5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.liquid_0b9a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.main-0449 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.main-0449 ul {
    list-style: none;
    padding: 0;
}

.main-0449 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.main-0449 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.main-b970 {
    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 */
.shadow-c9e9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.breadcrumb-rough-3db2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.widget_07d8 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.focus_d513 {
    color: var(--accent-color);
    margin: 0;
}

.red_4915 {
    display: flex;
    gap: 1.5rem;
}

.background_3981 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.preview_narrow_b4bd {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.silver-4fdc {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.silver-4fdc.panel-in-a7d4 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.silver-4fdc.static-c9ef {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.silver-4fdc.tertiary_936b {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.list-fast-31ac {
    margin-top: 2rem;
}

.block_hot_99ac {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.secondary_9d0b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .secondary_9d0b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wood_2a4e {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.panel_dad9 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.bottom_233f {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.modal-right-97ad {
    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 */
.breadcrumb-8534 {
    padding: var(--section-padding);
}

.layout-upper-e3f6 {
    margin: 2rem 0;
}

.element_smooth_50ec {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.badge-723b {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.caption-fresh-02f8 {
    list-style: none;
    padding: 0;
}

.caption-fresh-02f8 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;
}

.caption-fresh-02f8 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.caption-fresh-02f8 li:last-child {
    border-bottom: none;
}

.shadow-70a2 {
    margin: 2rem 0;
}

.pink-bc51 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.basic_1491 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .basic_1491 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.element_13db {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.element-dba8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.advanced_4bd2 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.aside-5905 {
    margin-top: 2rem;
}

.link_bronze_416a {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.pink-a110 {
    list-style: none;
    padding: 0;
}

.panel-0bc4 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.panel-0bc4 a {
    color: var(--accent-color);
    text-decoration: none;
}

.panel-0bc4 a:hover {
    text-decoration: underline;
}

.fresh-2f8c {
    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 */
.tiny-21e5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.chip-in-cd95 {
    margin: 2rem 0;
}

.notice_41b3 {
    margin-bottom: 3rem;
}

.notice_41b3 .video-static-68ee {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.menu_fluid_c22b {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.wood-dc81 {
    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);
}

.wood-dc81:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.description-af60 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .description-af60 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.outline-tiny-2975 {
    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 */
.button-large-2ad7 {
    padding: var(--section-padding);
}

.preview_c2c6 {
    margin: 2rem 0;
}

.green-23bb {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.menu-0eed {
    overflow-x: auto;
    margin: 2rem 0;
}

.alert_outer_33d0 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.dynamic-2f47 {
    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;
}

.detail_focused_798a {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.bottom-e560 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .bottom-e560 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.overlay_48cb {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.overlay_48cb .menu-full-b3c5 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.overlay_48cb .header_north_4823 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.border_63af {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.input-5733 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.heading-rough-35de {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .heading-rough-35de {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fresh-5b7e {
    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;
}

.fresh-5b7e:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.white-929d {
    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);
}

.accordion-static-c744 {
    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;
}

.gradient_7116 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.message-4a66 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.accent_1a20 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.carousel-south-183e {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.aside-e0e6 {
    color: var(--text-white);
    font-weight: 600;
}

.icon-af08 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.caption-active-f2bb {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.caption-active-f2bb .layout-selected-ff68 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.accent-b3de {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .accent-b3de {
        grid-template-columns: repeat(4, 1fr);
    }
}

.avatar_ac51 {
    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);
}

.avatar_ac51:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.avatar_ac51 .prev-d0bd {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.avatar_ac51 .clean_94f9 {
    color: var(--text-gray);
    font-size: 1rem;
}

.badge_lower_52cd {
    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);
}

.notice_over_7498 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.notice_over_7498 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.gas-0b9d {
    margin: 2rem 0;
}

.up_0a1f {
    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);
}

.up_0a1f:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.current-c905 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.brown-94c2 {
    flex: 1;
}

.alert_warm_1f47 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.paragraph-dark-2a17 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.pink-ad56 {
    margin: 2rem 0;
}

.title_bd40 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.title_bd40 .header_north_4823 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.title_bd40 .paragraph_5f21 {
    color: var(--text-gray);
    margin: 0;
}

.breadcrumb_thick_6aad {
    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);
}

.breadcrumb_thick_6aad .black-9d10 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.border_63af {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.header_selected_4dcf {
    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;
}

.input_8b86 {
    flex: 1;
}

.picture-down-eb50 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.pattern_north_6098 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.feature_6ea5 {
    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;
}

.form_640b {
    flex: 1;
}

.last_4341 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.red_748a {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.bronze-bca5 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.label_down_4a43 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.static_4276 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.static_4276 .layout-selected-ff68 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.media-static-ae97 {
    margin-top: 2rem;
}

.media-static-ae97 .logo-dim-08bb {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.header-yellow-2272 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.huge_6129 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .huge_6129 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.huge_6129 .out_9509 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.active_a876 {
    margin: 2rem 0;
}

.accordion_2041 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

/* Game Features Section */
.icon_dc7a {
    padding: var(--section-padding);
}

.white_f808 {
    margin-top: 1rem;
}

.green-d5d9 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.green-d5d9 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.green-d5d9 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.paragraph-1a52 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.container-solid-6100 {
    margin: 2rem 0;
}

.brown_2279 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.tag-static-fb9f {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.row_rough_a67d {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.picture-simple-1f48 {
    margin: 2rem 0;
}

.current-b5ff {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.current-b5ff .video-static-68ee {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.container-2107 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .container-2107 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.list_bfb4 {
    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);
}

.out_0872 {
    color: var(--text-white);
    font-weight: 600;
}

.black-738d {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.small-edcc {
    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);
}

.small-edcc p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.menu_6870 {
    padding: var(--section-padding);
}

.up_e6e4 {
    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;
}

.up_e6e4:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.overlay-advanced-a361 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.overlay-advanced-a361 .carousel_7133 {
    font-size: 2rem;
    flex-shrink: 0;
}

.overlay-advanced-a361 .static_2197 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.element_f2d7 {
    flex: 1;
}

.bright_191a {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.easy-3945 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.easy-3945 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.easy-3945 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.gallery_69ac {
    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);
}

.gallery_69ac p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.gallery_69ac strong {
    color: var(--warning-color);
}

/* Slots Section */
.steel_dd27 {
    padding: var(--section-padding);
}

.menu_stone_fd1c {
    margin: 2rem 0;
}

/* Table Games Section */
.highlight-9675 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.old-f150 {
    margin: 2rem 0;
}

.top-0a67 {
    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);
}

.top-0a67:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.top-0a67 .article-88b4 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.top-0a67 .info-50cc {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.alert-ce7d {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.alert-ce7d .black-9d10 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.out_c236 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.logo-03a0 {
    margin: 2rem 0;
}

.aside-dd65 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.secondary_8d7d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.modal_blue_19ca {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.right-a421 {
    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);
}

.right-a421:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.right-a421.fn-active-9521 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.photo_df32 {
    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);
}

.search_0e5d {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.search_0e5d strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.logo-plasma-4262 {
    padding: var(--section-padding);
}

.focused-362d {
    margin: 2rem 0;
}

.rough-8a43 {
    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);
}

.rough-8a43:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .rough-8a43 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.pagination-541f {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.content_out_7c4f {
    flex: 1;
}

.accent_pink_91c9 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.border-e2af {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.secondary_white_e3c7 {
    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;
}

.pink_0020 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.advanced_183e {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.white-b44c {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.up-dd11 {
    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;
}

.up-dd11:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.button_c871 {
    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);
}

.highlight-dark-6d1b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.highlight-dark-6d1b strong {
    color: var(--accent-color);
}

/* New Games Section */
.photo_lower_fb16 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.table_smooth_6358 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .table_smooth_6358 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .table_smooth_6358 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tooltip_10c0 {
    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;
}

.tooltip_10c0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.modal-light-1ef3 {
    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;
}

.copper-f461 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.feature-ab7d {
    font-size: 2rem;
}

.fresh_0945 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.advanced-6f52 {
    flex: 1;
}

.purple_4153 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.short-1389 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.action-f5de {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.medium-29ef {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.lite-9f24 {
    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;
}

.new-66bf {
    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;
}

.new-66bf:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.complex-9f85 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.in-16c2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.breadcrumb-f400 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .breadcrumb-f400 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.east-151c {
    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);
}

.sort-inner-9343 {
    color: var(--text-white);
    font-weight: 600;
}

.tertiary-4aa5 {
    color: var(--accent-color);
    font-weight: 600;
}

.tag-a555 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.tag-a555 strong {
    color: var(--accent-color);
}

/* Security Section */
.caption_4dad {
    padding: var(--section-padding);
}

/* Benefits Section */
.dynamic-c8cb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.focus-dark-8f17 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.video_stale_74d8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.footer_851d {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.column_lite_1548 {
    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) {
    .column_lite_1548 {
        flex-direction: column;
        gap: 1rem;
    }
}

.column_lite_1548:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.column_lite_1548 .feature_6ea5 {
    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;
}

.column_lite_1548 .form_640b {
    flex: 1;
}

.column_lite_1548 .last_4341 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.column_lite_1548 .red_748a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.tabs-dynamic-683c {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tabs-dynamic-683c .aside-down-4ccf {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tabs-dynamic-683c .item_b258 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tabs-dynamic-683c .item_b258 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.tabs-dynamic-683c .item_b258 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.yellow-0c3c {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.motion_5875 {
    padding: var(--section-padding);
}

.video-e701 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .video-e701 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.paper_5772 {
    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);
}

.paper_5772:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.paper_5772 .motion-fb39 {
    font-size: 2rem;
    flex-shrink: 0;
}

.paper_5772 .lower-b81f {
    flex: 1;
}

.paper_5772 .title-cc24 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.paper_5772 .inner-c578 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.sidebar_full_1eb9 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.sidebar_full_1eb9 .notification-6910 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.sidebar_full_1eb9 .badge-312f {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.sidebar_full_1eb9 .badge-312f 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);
}

.sidebar_full_1eb9 .badge-312f li:last-child {
    border-bottom: none;
}

.sidebar_full_1eb9 .badge-312f 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;
}

.sidebar_full_1eb9 .badge-312f li strong {
    color: var(--text-white);
}

.accent_selected_646b {
    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);
}

.accent_selected_646b p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.accent_selected_646b strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.box_c0a9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.component_in_9232 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .component_in_9232 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.liquid-1fe3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.liquid-1fe3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.box_db97 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.disabled-advanced-f098 {
    font-size: 2rem;
}

.huge_84b4 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.dropdown-mini-467d {
    flex: 1;
}

.title_glass_19e7 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.title_glass_19e7 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.title_glass_19e7 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.bright-4b77 {
    margin-top: 3rem;
}

.element_smooth_50ec {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.badge-723b {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.caption-fresh-02f8 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.caption-fresh-02f8 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.caption-fresh-02f8 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.caption-fresh-02f8 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.row-8292 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.left_bee0 {
    margin: 2rem 0;
}

.cold_1872 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.cold_1872 .video-static-68ee {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.feature_8c0b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .feature_8c0b {
        grid-template-columns: repeat(2, 1fr);
    }
}

.alert_pressed_c5c7 {
    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);
}

.alert_pressed_c5c7:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.tabs-out-f164 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.fast-686b {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.footer_paper_a00b {
    padding: var(--section-padding);
}

.accordion_bfa4 {
    margin: 2rem 0;
}

.item-pressed-fb7d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .item-pressed-fb7d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .item-pressed-fb7d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mask_7248 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.mask_7248:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.article-full-3666 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.down-0478 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.feature-073d {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.feature-073d.accordion_left_6bcb {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.old-7302 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.bottom_44ee {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.shade_hot_b024 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-bottom-dd5f {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.aside_basic_a771 {
    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);
}

.aside_basic_a771 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.aside_basic_a771 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.primary-pressed-4d56 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.overlay-pink-7104 {
    margin: 2rem 0;
}

.prev_f487 {
    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) {
    .prev_f487 {
        flex-direction: column;
        gap: 1rem;
    }
}

.prev_f487:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.prev_f487::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);
}

.banner-4a24 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.feature_solid_b595 {
    flex: 1;
}

.tooltip-a187 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.wide_3d5c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wide_3d5c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.info_inner_07f2 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hero_822a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hover_8d2b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hover_8d2b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.paragraph_middle_eee4 {
    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);
}

.logo_2822 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.active_rough_be52 {
    flex: 1;
}

.rough-7ce1 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.preview-warm-fc0e {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.alert_b687 {
    margin-top: 2rem;
    text-align: center;
}

.slider-dynamic-90fb {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.slider-dynamic-90fb strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.mask_4bf8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .mask_4bf8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.search-5503 {
    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);
}

.search-5503:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.search-5503 .module_bright_bc9b {
    font-size: 2rem;
    flex-shrink: 0;
}

.search-5503 .avatar-8efe {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.search-5503 .stale-9be7 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.search-5503 .modal_rough_168e {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.disabled_e7fd {
    padding: var(--section-padding);
}

.grid_f0a4 .border-lower-3c6c {
    flex: 1;
}

/* Promo Calendar Section */
.link-white-8390 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.status-complex-7cc4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .status-complex-7cc4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wood_1245 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.box-orange-11dc {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.detail-3b8f {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.thumbnail-bronze-b53b {
    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);
}

.feature_a671 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.heading-feb8 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.thick-60cd {
    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);
}

.thick-60cd p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.thick-60cd strong {
    color: var(--accent-color);
}

/* Requirements Section */
.in_cc8f {
    padding: var(--section-padding);
}

.fluid-76ac {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .fluid-76ac {
        grid-template-columns: repeat(2, 1fr);
    }
}

.green_0ae6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.paper_45f9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.modal-black-c284 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-black-c284 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.wide_bb9e {
    margin-top: 3rem;
}

.wide_bb9e .element_smooth_50ec {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.wide_bb9e .badge-723b {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.wide_bb9e .caption-fresh-02f8 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.wide_bb9e .caption-fresh-02f8 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.wide_bb9e .caption-fresh-02f8 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.wide_bb9e .caption-fresh-02f8 li strong {
    color: var(--warning-color);
}

.frame_bea6 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.frame_bea6 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.dropdown_14ea {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.gradient_ac14 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gradient_ac14 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.notification_wood_569a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.notification_wood_569a .video-static-68ee {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.row-pressed-b58b {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stone-dc5b {
    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);
}

.stone-dc5b:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.block-6fa2 {
    font-size: 2rem;
    flex-shrink: 0;
}

.next_f79b {
    flex: 1;
}

.photo-2316 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.hero_b948 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.brown-5fc6 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.sidebar_e70c {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.filter_9523 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .filter_9523 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.purple-9377 {
    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);
}

.purple-9377:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.icon-bottom-d35e {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.search-down-8e02 {
    color: var(--text-gray);
    font-size: 1rem;
}

.red-a5c6 {
    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);
}

.panel_light_f832 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.panel_light_f832 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.bright-9dd6 { 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; }
.logo-2479, .modal-ad37 { max-width:100%; height:auto; }

.motion-526e, .component_f320, .title-complex-1b6d { white-space:normal; }

.heading-03e9,
.filter-focused-5f2b,
.tertiary_outer_d3de,
.mask_4bf8,
.pink-ad56,
.soft-570e {
  flex-wrap:wrap;
}

[class*="grid"],
.filter_9523,
.item-pressed-fb7d,
.carousel-c758 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.slider-8d93 img,
.filter-focused-5f2b img,
.photo_e162 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.list_24fc, .pattern-9bdb,
.mask_static_772e, .paper_d30f {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.table_4fcd { width:100%; overflow-x:auto; }
.table_4fcd table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.caption-cd86 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .caption-cd86 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.slow-6300 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.grid_c2b2,
.button-new-6dfb,
.north_8fe8,
.red-3d79,
.link-bb59,
.filter_9523,
.item-pressed-fb7d,
.carousel-c758,
.element-e1ac,
.focused-362d,
.caption-cd86 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .grid_c2b2,
  .button-new-6dfb,
  .north_8fe8,
  .red-3d79,
  .link-bb59,
  .filter_9523,
  .item-pressed-fb7d,
  .carousel-c758,
  .element-e1ac,
  .focused-362d,
  .caption-cd86 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.row-fdea,
.media-15c2,
.purple-9377,
.modal-right-88b1,
.mask_7248,
.detail-c4d0,
.rough-8a43,
.slow-6300 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.title-4d94,
.under-f73a,
.row-0f49 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.title-4d94 > *,
.under-f73a > *,
.row-0f49 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: a29b */
.promo-block-m9 {
  padding: 0.2rem;
  font-size: 14px;
  line-height: 1.3;
}
