/* {$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;
}

.card_dirty_0d10 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.gallery-a0d6 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .gallery-a0d6 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .gallery-a0d6 {
        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 */
.tabs-motion-570a {
    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);
}

.layout_new_7116 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .layout_new_7116 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .item-379b {
        grid-column: 1;
    }
    
    .modal_fluid_cbd3 {
        grid-column: 2;
    }
    
    .carousel-37e4 {
        grid-column: 3;
    }
}

.item-379b img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.item-379b:hover img {
    transform: scale(1.05);
}

/* Navigation */
.plasma-7b59 {
    display: none;
}

@media (min-width: 1024px) {
    .plasma-7b59 {
        display: block;
    }
}

/* Grouped Navigation */
.focused-abce {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.slider-hot-6555 {
    position: relative;
}

.filter_hard_7144 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.slider-hot-6555 .full-253f {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.full-253f {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.aside_complex_d5c0 {
    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;
}

.aside_complex_d5c0:hover,
.aside_complex_d5c0.fn-active-ab19 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.container-motion-a2b4 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .container-motion-a2b4 {
        display: flex;
    }
}

/* Mobile Register Button */
.modal_fluid_cbd3 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .modal_fluid_cbd3 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.list-dark-2ead {
    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;
}

.list-dark-2ead::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 */
.carousel-37e4 {
    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) {
    .carousel-37e4 {
        display: none;
    }
}

.carousel-37e4 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.carousel-37e4.fn-active-ab19 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.carousel-37e4.fn-active-ab19 span:nth-child(2) {
    opacity: 0;
}

.carousel-37e4.fn-active-ab19 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.banner_952a {
    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;
}

.banner_952a.fn-active-ab19 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.rough-22b2 {
    overflow: hidden;
}

.card-action-893c {
    list-style: none;
    padding: 0.75rem 0;
}

.module-5c99 {
    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;
}

.module-5c99:hover,
.module-5c99.fn-active-ab19 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.module-5c99.element_3c7f {
    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;
}

.module-5c99.element_3c7f::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 */
.menu_7751 {
    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;
}

.filter-cd8d {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.filter-cd8d:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.bottom_dd0a {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.bottom_dd0a:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.secondary-hovered-ca17 {
    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;
}

.secondary-hovered-ca17:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.dynamic_4c3a {
    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;
}

.active-dbdb {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.active-dbdb:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.section_smooth_13f5 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.section_smooth_13f5:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.hard_7570 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.hard_7570: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);
}

.main_42cb {
    font-size: 1em;
    font-weight: 700;
}

.bottom-fce6 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.container_green_0e4b {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.container_green_0e4b::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;
}

.dirty_c5c0 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .dirty_c5c0 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.hidden-tiny-56fe {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.shade_north_464d {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.shadow-2953 {
    margin-bottom: 2rem;
}

.stone_006a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .stone_006a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.shadow-in-1424 {
    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);
}

.pro_f4f2 {
    font-size: 1.5rem;
}

.grid-44e2 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.block-left-1fe4 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-420a {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.image-420a:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.pattern-east-0479 {
    text-align: center;
    margin-bottom: 3rem;
}

.table-1aa3 {
    margin-bottom: 1rem;
}

.tertiary-fb95 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.copper-f0eb {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .copper-f0eb {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .copper-f0eb.frame_3336 {
        direction: rtl;
    }
    
    .copper-f0eb.frame_3336 > * {
        direction: ltr;
    }
}

.focused-07a1 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.focused-07a1:first-child {
    margin-top: 0;
}

.description-up-e44f {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.mask-e051 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.mask-e051:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.thick-86e0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .thick-86e0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.notice-basic-85d5 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.hover_right_f125 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.purple-94c8 {
    list-style: none;
}

.purple-94c8 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.purple-94c8 li:last-child {
    border-bottom: none;
}

/* Games Features */
.dropdown-west-8803 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.full_efe7 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.table_5027 {
    font-size: 2rem;
    flex-shrink: 0;
}

.large_6cbb {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.notice_289c {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.iron-e2a0 {
    margin: 2rem 0;
}

.avatar_94cc {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.advanced_a488 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.feature_stone_f8d7 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.surface_outer_8c0c {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.footer_9de3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .footer_9de3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.paragraph-d593 {
    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);
}

.paragraph-d593:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.text_2918 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.filter-dim-cfdb {
    font-size: 1.5rem;
}

.modal-under-3278 {
    color: var(--accent-color);
    margin: 0;
}

.static-432f {
    list-style: none;
}

.static-432f li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.static-432f li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.background_11fa {
    margin: 2rem 0;
}

.sidebar_yellow_04fa {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.tooltip_lower_8650 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .tooltip_lower_8650 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.chip_center_58d9 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(0, 208, 132, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 208, 132, 0.2);
}

.aside-light-65c1 {
    font-size: 1.25rem;
}

.dark-8449 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.photo-a5f6,
.solid-0aa8 {
    text-align: center;
    margin: 2rem 0;
}

.nav-selected-3d7b,
.gas-b87b {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.focused-014d {
    margin: 2rem 0;
    text-align: center;
}

.blue_62b7 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blue_62b7::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;
}

.paragraph_cdc3 {
    position: relative;
    z-index: 1;
}

.heading_hot_73ad {
    margin-bottom: 1rem;
}

.input-ee14 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cool-0530 {
    margin-bottom: 3rem;
}

.text-3b21 {
    margin-top: 3rem;
}

.wrapper_bright_6c8c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .wrapper_bright_6c8c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wrapper_bright_6c8c .shadow-in-1424 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.modal-pressed-a882 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.block_up_f244 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.tag-warm-ed21 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.hovered-5148 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .hovered-5148 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hovered-5148 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.stale-7849 {
    margin-bottom: 1rem;
}

.active-580d img {
    margin-bottom: 1rem;
}

.sidebar_3ec4 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hover_36e7 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.bright-bb56 {
    list-style: none;
}

.bright-bb56 li {
    margin-bottom: 0.5rem;
}

.bright-bb56 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.bright-bb56 a:hover {
    color: var(--accent-color);
}

.dropdown-2d16 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.card-a240 {
    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);
}

.card-a240:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.current_858a {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.current_858a p {
    margin-bottom: 0.25rem;
}

.banner_medium_592f {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .banner_medium_592f {
        flex-direction: row;
    }
}

.plasma-ecb9 {
    text-align: center;
}

@media (min-width: 768px) {
    .plasma-ecb9 {
        text-align: left;
    }
}

.plasma-ecb9 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.tabs_middle_d5a3 {
    font-size: 0.75rem !important;
}

.static-c728 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.media-b529 {
    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);
    }
}

.container_tall_9cd1 {
    animation: fadeInUp 0.6s ease-out;
}

.center-58ad {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.border-wide-228e {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .border-wide-228e {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.hot_8fe6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hot_8fe6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.focused-566d {
    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);
}

.focused-566d .table_5027 {
    font-size: 1.25rem;
}

.focused-566d .background-lite-4a9f {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.pagination-db6c {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .pagination-db6c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sort_8d22 {
    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);
}

.sort_8d22:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.secondary_0156 {
    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);
}

.block-1128 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.input-79c6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tabs_bottom_ca61 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.heading_top_5e64 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.heading_top_5e64 .large_6cbb {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.heading_top_5e64 .notice_289c {
    color: var(--text-gray);
    line-height: 1.6;
}

.nav-f5cf {
    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);
}

.footer-old-384c {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.footer-old-384c img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.footer-old-384c img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.detail-liquid-c1f2 {
    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);
}

.element_first_2b9f {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.grid_0316 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.grid_0316 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.grid_0316 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);
}

.grid_0316 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.grid_0316 input::placeholder {
    color: var(--text-muted);
}

.bronze_ad7c {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.secondary-clean-04a4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.secondary-clean-04a4 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.aside-d2e5 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.aside-d2e5:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.tooltip_lower_8650 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tooltip_lower_8650 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.chip_center_58d9 {
    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);
}

.chip_center_58d9 .aside-light-65c1 {
    font-size: 1.25rem;
}

.chip_center_58d9 .dark-8449 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.box_e194 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.slider_cool_dfc1 {
    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);
}

.slider_cool_dfc1 .table_5027 {
    font-size: 2rem;
    flex-shrink: 0;
}

.slider_cool_dfc1 .large_6cbb {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.slider_cool_dfc1 .notice_289c {
    color: var(--text-gray);
    line-height: 1.6;
}

.slider-f2bb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.center_ad91 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.center_ad91 .header-977b {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.center_ad91 .accordion_53cc {
    color: var(--text-gray);
    line-height: 1.6;
}

.avatar_1206 {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.title_blue_18d8 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .title_blue_18d8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.popup-d253 {
    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);
}

.popup-d253:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.avatar_simple_ccc4 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.input_9729 {
    flex: 1;
}

.hover-7945 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.orange-cff4 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.component-prev-bb66 {
    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);
}

.component-prev-bb66:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.feature_a3f6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .feature_a3f6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.content-cool-8f4d {
    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);
}

.content-cool-8f4d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.copper_1d74 {
    font-size: 2rem;
    flex-shrink: 0;
}

.description_dynamic_e238 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.lower_e3c3 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.row_d8bc {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.white-4dfb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.module_70f0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.motion_1f4a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.motion_1f4a .hard_cff1 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.motion_1f4a .hard_a00a {
    color: var(--text-gray);
    line-height: 1.6;
}

.list_hard_09c8 {
    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);
}

.caption-east-93cd {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.focus_bb7f {
    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);
}

.focus_bb7f .table_5027 {
    font-size: 2rem;
    flex-shrink: 0;
}

.focus_bb7f .large_6cbb {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.focus_bb7f .notice_289c {
    color: var(--text-gray);
    line-height: 1.6;
}

.last-df0a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .last-df0a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.paper_bb52 {
    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);
}

.paper_bb52:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.accordion-eeb1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accordion-eeb1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.heading-narrow-80f4 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.heading-narrow-80f4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.huge_b175 {
    font-size: 2rem;
    flex-shrink: 0;
}

.simple_d63e {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.advanced_a488 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.dirty_b2fa {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.banner-static-cc98 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.description-1d88 {
    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);
}

.description-1d88:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gold_e165 {
    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);
}

.grid_5998 {
    flex: 1;
}

.basic-fe48 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.modal-active-9f8b {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.description-9b43 {
    color: var(--text-gray);
    line-height: 1.6;
}

.new_9ad7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tooltip-8f82 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tooltip-8f82 .header-977b {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tooltip-8f82 .accordion_53cc {
    color: var(--text-gray);
    line-height: 1.6;
}

.solid-0aa8 {
    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);
}

.in_f3b3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .in_f3b3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.photo_4022 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .photo_4022 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.detail-white-57b1 {
    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-white-57b1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.wrapper_outer_f61f {
    font-size: 2rem;
    flex-shrink: 0;
}

.tiny_cd8e {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.breadcrumb_paper_dffa {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.status_9850 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.current-34e4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.summary-438f {
    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);
}

.dim-16b7 {
    font-size: 2rem;
    flex-shrink: 0;
}

.button-545d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.accent-72be {
    color: var(--text-gray);
    line-height: 1.6;
}

.caption-east-93cd {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.focus_bb7f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.focus_bb7f .large_6cbb {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.focus_bb7f .notice_289c {
    color: var(--text-gray);
    line-height: 1.6;
}

.modal-5448 {
    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);
}

.text_new_515e {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .text_new_515e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .text_new_515e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dim-30aa {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.dim-30aa:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.component_90fc {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.plasma-3c0e {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.light_edaf {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.slow_ba8f {
    padding: 1.5rem;
}

.column_726c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hero_2c9a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero_2c9a 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;
}

.hero_2c9a li:last-child {
    border-bottom: none;
}

.hero_2c9a li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.shadow_9ec7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shadow_9ec7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.label_0bf1 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.label_0bf1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pro-f834 {
    font-size: 2rem;
    flex-shrink: 0;
}

.bright-6be6 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.center-9f16 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.search_c7e1 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.status_8fc6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.lite_f74b {
    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);
}

.footer-outer-e5c4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.complex_569e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.card-cc53 {
    color: var(--text-gray);
    line-height: 1.6;
}

.picture-black-7bdd {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.section_5d5e {
    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);
}

.small-8256 {
    text-align: center;
}

.gradient_e331 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.north_7a29 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.paragraph-9342 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.block_989c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.block_989c .large_6cbb {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.block_989c .notice_289c {
    color: var(--text-gray);
    line-height: 1.6;
}

.light_8130 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .light_8130 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .light_8130 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.element_east_d3d2 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.element_east_d3d2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.alert_top_7ed2 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.rough-0cc1 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.large_6cbb {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.aside-ad9d {
    padding: 1.5rem;
}

.notice_289c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.gallery-selected-7c57 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gallery-selected-7c57 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.gallery-selected-7c57 li:last-child {
    border-bottom: none;
}

.gallery-selected-7c57 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.sort_be36 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.detail-eba0 {
    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-eba0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.border_c129 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.image_f55a {
    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);
}

.secondary_0156 {
    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;
}

.block-1128 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.input-79c6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.article-d285 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hard-3ad6 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.yellow_82b5 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.badge-e5aa {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.notice-current-53fa {
    display: flex;
    gap: 1rem;
}

.notice-current-53fa .outer-2dd1 {
    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;
}

.top-c85c {
    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);
}

.feature-left-edcf {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.border-out-751f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.border-out-751f li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.border-out-751f li:last-child {
    border-bottom: none;
}

.border-out-751f li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.accordion-8a1f {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .accordion-8a1f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .accordion-8a1f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.element_b18c {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.element_b18c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.sidebar-afa8 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.focus-faae {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.hard_cff1 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.outline-wood-c5bf {
    font-size: 1rem;
}

.thumbnail_b643 {
    padding: 1.5rem;
}

.hard_a00a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.primary_57a0 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.primary_57a0 .small-8256 {
    text-align: center;
}

.primary_57a0 .north_7a29 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.primary_57a0 .gradient_9445 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.cold-7698 {
    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);
}

.cold-7698:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.chip_32a8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .chip_32a8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.photo_bottom_f7af {
    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);
}

.photo_bottom_f7af:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.clean_a2ac {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.icon-old-38f6 {
    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);
}

.hot_539a {
    font-size: 2rem;
    flex-shrink: 0;
}

.short_bfc2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.paragraph-d2ad {
    color: var(--text-gray);
    line-height: 1.6;
}

.module-1635 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.button-523d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wrapper-middle-f2aa {
    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);
}

.footer_bottom_0568 {
    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;
}

.footer_bottom_0568.light-ebfb {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.footer_bottom_0568.stone_f5c9 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.footer_bottom_0568.steel_e432 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.footer_bottom_0568.detail_fixed_f49a {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.footer_bottom_0568.fixed-529a {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.stale-8bb9 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.slider-gas-a14f {
    color: var(--text-gray);
    line-height: 1.6;
}

.wrapper-orange-5164 {
    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);
}

.liquid_ad8b {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.slider-f2bb {
    list-style: none;
    padding: 0;
    margin: 0;
}

.slider-f2bb 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;
}

.slider-f2bb li:last-child {
    border-bottom: none;
}

.slider-f2bb li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.title-wood-8b7d {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .title-wood-8b7d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .title-wood-8b7d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.carousel_d935 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.carousel_d935:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.carousel_d935.shadow_e6aa {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .carousel_d935.shadow_e6aa {
        grid-column: span 3;
    }
}

.focused_4062 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.carousel_d935.shadow_e6aa .focused_4062 {
    background: rgba(6, 182, 212, 0.1);
}

.lower-da94 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.status_7c20 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.carousel_d935.shadow_e6aa .status_7c20 {
    color: var(--info-color);
}

.hovered-4365 {
    padding: 1.5rem;
    text-align: center;
}

.media-3765 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.carousel_d935.shadow_e6aa .media-3765 {
    color: var(--info-color);
}

.chip-ac70 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.paper-5779 {
    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 */
.alert-ca5a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .alert-ca5a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.outline_complex_2824 {
    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);
}

.outline_complex_2824:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.column-tiny-5f90 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.slider_cool_dfc1 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.aside-light-65c1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.outline_f278 {
    flex: 1;
}

.sidebar_yellow_04fa {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.carousel-old-c7f7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.input-huge-28f3 {
    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);
}

.copper-4daf {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.row_fresh_8deb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.media-b529 {
    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);
}

.shade_warm_3773 {
  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);
}

.shade_warm_3773 .small-8256 {
    text-align: center;
}

.shade_warm_3773 .gradient_e331 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.shade_warm_3773 .north_7a29 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.fresh_9ac6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.prev_af0d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hard-4e98 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.panel-730d {
    color: var(--text-gray);
    line-height: 1.6;
}

.surface_cefc {
    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);
}

.short_d65b {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.info_28ff {
    color: var(--text-gray);
    line-height: 1.6;
}

.layout-paper-bd2c {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .layout-paper-bd2c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .layout-paper-bd2c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stone-1966 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.stone-1966:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.wood_cad3 {
    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);
}

.card-selected-c94f {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.modal-5718 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.column-over-8a4c {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.column-over-8a4c.overlay_full_5053 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.column-over-8a4c.surface_d8f7 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.column-over-8a4c.progress_9753 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.banner-6b9d {
    padding: 1.5rem;
    text-align: center;
}

.preview_ccfa {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.shade_bright_7cb2 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.shade_bright_7cb2 .button_green_6aba {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.tertiary-medium-a1fe {
    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);
}

.tertiary-medium-a1fe:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.grid-11bd {
  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);
}

.fresh_4a99 {
    text-align: center;
}

.fresh_4a99 .gradient_e331 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.fresh_4a99 .north_7a29 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.form_under_cc97 { text-align: center; }
.pressed-71e9 { text-align: left; }
.red_0183 { text-align: right; }

.highlight_0465 { margin-bottom: 0; }
.sidebar-active-eeb9 { margin-bottom: 0.5rem; }
.north_9051 { margin-bottom: 1rem; }
.pink_d7ab { margin-bottom: 1.5rem; }
.steel_4020 { margin-bottom: 2rem; }

.iron_f326 { margin-top: 0; }
.main-e260 { margin-top: 0.5rem; }
.aside_15c5 { margin-top: 1rem; }
.huge-12a7 { margin-top: 1.5rem; }
.grid_6708 { margin-top: 2rem; }

.fn-hidden-ab19 { display: none; }
.fn-visible-ab19 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .container_green_0e4b {
        padding: 6rem 0 3rem;
    }
    
    .dirty_c5c0 {
        text-align: center;
    }
    
    .copper-f0eb {
        text-align: center;
    }
    
    .stone_006a {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .tabs-motion-570a,
    .banner_952a,
    .blue_62b7,
    .tag-warm-ed21 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .container_green_0e4b {
        background: none;
    }
}

/* Providers Section */
.over_cabc {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.title-cold-31ef {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .title-cold-31ef {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .title-cold-31ef {
        grid-template-columns: repeat(4, 1fr);
    }
}

.grid-plasma-8108 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.grid-plasma-8108:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.modal-cd8b {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.status-9b34 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.under-eff0 {
    list-style: none;
    padding: 0;
}

.under-eff0 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.under-eff0 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.media_a824 {
    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);
}

.media_a824 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.inner-85ae {
    padding: var(--section-padding);
}

.fast_2fd2 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fast_2fd2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tiny-51a3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.tiny-51a3:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.dim_b3c5 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.highlight_mini_d16c {
    display: flex;
    flex-direction: column;
}

.dropdown_iron_f40b {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.overlay_13af {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.wrapper_ac93 {
    color: var(--accent-color);
}

.bottom_321a {
    font-size: 1.25rem;
}

.cold_feaf {
    margin-bottom: 1rem;
}

.cold_feaf p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.widget-hot-2fdd {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.popup_945d {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.small-8256 {
    text-align: center;
}

.gradient_e331 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.north_7a29 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.box_4c02 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.summary_gas_6ac5 {
    margin: 2rem 0;
}

.progress_cda9 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.progress_cda9 .table_5027 {
    font-size: 2rem;
    flex-shrink: 0;
}

.clean-b092 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.shadow_3f80 {
    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;
}

.shadow_3f80:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.mask_0c9d {
    font-size: 2rem;
}

.grid-current-df9e {
    display: flex;
    flex-direction: column;
}

.notification-1e56 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.sidebar_af52 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.tiny_7c74 {
    padding: var(--section-padding);
}

.carousel_3c8f {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .carousel_3c8f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .carousel_3c8f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.glass-9630 {
    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);
}

.glass-9630:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.glass-9630 .gradient_e331 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.glass-9630 .north_7a29 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.glass-9630 .primary_ac78 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.info_active_9d61 {
    margin-top: 4rem;
}

.hard-c764 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.button_7a9e {
    overflow-x: auto;
}

.item_green_0b91 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.item_green_0b91 thead {
    background: var(--accent-color);
}

.item_green_0b91 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.item_green_0b91 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.item_green_0b91 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.item_green_0b91 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.main_motion_a5b8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.brown_2af7 {
    max-width: 900px;
    margin: 0 auto;
}

.container-west-5256 {
    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);
}

.container-west-5256:hover {
    border-color: var(--accent-color);
}

.hard_9e3a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.hard_9e3a h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.lower_0984 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.container-west-5256.fn-active-ab19 .lower_0984 {
    transform: rotate(45deg);
}

.avatar-fluid-f13f {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.container-west-5256.fn-active-ab19 .avatar-fluid-f13f {
    max-height: 1000px;
}

.avatar-fluid-f13f p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.main_paper_fe87 {
    padding: var(--section-padding);
}

.footer-old-384c {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.tertiary-white-b97f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.bright-5f71 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .bright-5f71 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.menu-pink-05a8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.module_36dc {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.action-61a8 {
    font-size: 2rem;
}

.item-8f80 {
    color: var(--text-white);
    margin: 0;
}

.column_d5e0 {
    list-style: none;
    padding: 0;
}

.column_d5e0 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.column_d5e0 li:last-child {
    border-bottom: none;
}

.yellow-0544 {
    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);
}

.yellow-0544 p {
    color: var(--success-color);
    margin: 0;
}

.layout-medium-6824 {
    margin-top: 3rem;
}

.feature-left-edcf {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.active-f827 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .active-f827 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.container_selected_4278 {
    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);
}

.first-713f {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.container_selected_4278 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.photo-medium-04cf {
    padding: var(--section-padding);
}

.panel-340b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .panel-340b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.box_gold_bd9d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.box_gold_bd9d:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature_9fc8 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.sidebar-silver-8790 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.fast-eee5 {
    flex: 1;
}

.image_e46a {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.article_601f {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.outline_first_cff0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.input-bd6f {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.input-bd6f:last-child {
    border-bottom: none;
}

/* Comparison Section */
.item-fluid-8473 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.photo-white-1e19 {
    padding: var(--section-padding);
}

.title-active-ff75 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.highlight_142d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .highlight_142d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tag-220b {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.border-776f, .button-hard-bb66, .clean_a6ac {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.clean_a6ac {
    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 */
.green-2050 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hidden-dirty-19a0 {
    margin: 2rem 0;
}

.layout-green-3644 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.in_b184 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.large_f69d {
    list-style: none;
    padding: 0;
}

.large_f69d 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;
}

.large_f69d li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.large_f69d li:last-child {
    border-bottom: none;
}

.pagination-hard-39c1 {
    text-align: center;
    margin-top: 2rem;
}

.banner_outer_1b04 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.active-17e4 {
    padding: var(--section-padding);
}

.selected_edcb {
    margin: 2rem 0;
}

.stone-3864 {
    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) {
    .stone-3864 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.stone-3864:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.solid-b1c8 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.detail-29ca {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.first-3d59 {
    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;
}

.hidden-lite-9ebe {
    flex: 1;
}

.wrapper_advanced_03e7 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.nav_full_739d {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.orange_0ef5 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.active_complex_64d5 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .active_complex_64d5 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.active-db84 {
    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);
}

.active-db84:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.active-db84 .gradient_e331 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.active-db84 .north_7a29 {
    color: var(--text-gray);
    font-size: 1rem;
}

.action_9c50 {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.motion-3026 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.motion-3026 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.banner-black-7c56 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .banner-black-7c56 {
        grid-template-columns: 1fr 1fr;
    }
}

.layout-under-eb1d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tertiary-6ece {
    margin-bottom: 1.5rem;
}

.tertiary-6ece label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.tertiary-6ece input,
.tertiary-6ece 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;
}

.tertiary-6ece input:focus,
.tertiary-6ece select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.alert_inner_8bfa {
    width: 100%;
    margin-top: 1rem;
}

.aside-simple-600b {
    display: flex;
    align-items: center;
}

.main_9d45 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.accent-pressed-19fb {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.summary_light_d028 {
    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;
}

.list_30c1 {
    color: var(--text-gray);
}

.carousel_1dae {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.gold_d73a {
    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);
}

.gold_d73a p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.table_39fc {
    margin-top: 3rem;
}

.feature-out-4bb7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.tall_708c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.status-purple-b687 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.action_a476 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.action_a476:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.surface_5b9a {
    padding: var(--section-padding);
}

.gas-59fc {
    margin: 2rem 0;
}

.hero_ad20 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.highlight-c33e {
    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;
}

.highlight-c33e:hover, .highlight-c33e.fn-active-ab19 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.widget_wide_a81d {
    display: none;
}

.widget_wide_a81d.fn-active-ab19 {
    display: block;
}

.action-eb60 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.slider_advanced_ac76 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.inner_7eb4 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.inner_7eb4 ul {
    list-style: none;
    padding: 0;
}

.inner_7eb4 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.inner_7eb4 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.modal_4bb0 {
    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 */
.picture_f68f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.shadow-inner-e966 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.text_d746 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.status-liquid-08bd {
    color: var(--accent-color);
    margin: 0;
}

.block-4b73 {
    display: flex;
    gap: 1.5rem;
}

.active_6b01 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.dropdown_62eb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.logo-cold-1dac {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.logo-cold-1dac.selected-10e1 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.logo-cold-1dac.fast-5e52 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.logo-cold-1dac.main_a1e0 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.box-simple-fe37 {
    margin-top: 2rem;
}

.steel-079f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.logo-outer-bb84 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .logo-outer-bb84 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.lower_fda3 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.detail-54d7 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.basic-cb23 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.hot-1a22 {
    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 */
.active_stale_26c7 {
    padding: var(--section-padding);
}

.dim-423c {
    margin: 2rem 0;
}

.popup-cf05 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.in_c092 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.stone-091d {
    list-style: none;
    padding: 0;
}

.stone-091d 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;
}

.stone-091d li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.stone-091d li:last-child {
    border-bottom: none;
}

.surface_solid_5784 {
    margin: 2rem 0;
}

.menu-current-02ad {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.input_lite_be34 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .input_lite_be34 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.image-fc32 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.medium-caa5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.active-8945 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.hot-5b02 {
    margin-top: 2rem;
}

.hover-7945 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.overlay-1833 {
    list-style: none;
    padding: 0;
}

.steel-10db {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.steel-10db a {
    color: var(--accent-color);
    text-decoration: none;
}

.steel-10db a:hover {
    text-decoration: underline;
}

.tag-e0d5 {
    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 */
.fast_1034 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pagination-ceab {
    margin: 2rem 0;
}

.message_9e35 {
    margin-bottom: 3rem;
}

.message_9e35 .in_b184 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.element-87fd {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.prev-5b60 {
    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);
}

.prev-5b60:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.form-iron-e53e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .form-iron-e53e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hot-bde6 {
    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 */
.text-4148 {
    padding: var(--section-padding);
}

.block_7ada {
    margin: 2rem 0;
}

.component_3c6b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.sort_dim_45dc {
    overflow-x: auto;
    margin: 2rem 0;
}

.shade-2400 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.widget_331b {
    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;
}

.backdrop-full-8f71 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.sidebar_a26b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .sidebar_a26b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature_a369 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.feature_a369 .table_5027 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.feature_a369 .large_6cbb {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.aside_f1ca {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.gallery-soft-16c7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.aside_2d0e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .aside_2d0e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.container_545a {
    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;
}

.container_545a:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.table-4f37 {
    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);
}

.narrow-e984 {
    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;
}

.outline_8e56 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.accent-0a55 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.current-1d14 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.popup_gas_daff {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.caption_pink_e8f6 {
    color: var(--text-white);
    font-weight: 600;
}

.hard_57b7 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.element_602a {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.element_602a .outer-2dd1 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.first_ef27 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .first_ef27 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.medium-7352 {
    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);
}

.medium-7352:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.medium-7352 .gradient_e331 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.medium-7352 .north_7a29 {
    color: var(--text-gray);
    font-size: 1rem;
}

.surface_inner_8f53 {
    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);
}

.link-eaa1 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.link-eaa1 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.current-34e4 {
    margin: 2rem 0;
}

.summary-438f {
    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);
}

.summary-438f:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.dim-16b7 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.description_solid_8b01 {
    flex: 1;
}

.button-545d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.accent-72be {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.caption-east-93cd {
    margin: 2rem 0;
}

.focus_bb7f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.focus_bb7f .large_6cbb {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.focus_bb7f .notice_289c {
    color: var(--text-gray);
    margin: 0;
}

.modal-5448 {
    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);
}

.modal-5448 .nav-selected-3d7b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.aside_f1ca {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.gold_e165 {
    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;
}

.grid_5998 {
    flex: 1;
}

.modal-active-9f8b {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.description-9b43 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.secondary_0156 {
    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;
}

.sidebar-solid-051d {
    flex: 1;
}

.block-1128 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.input-79c6 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.yellow_82b5 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.badge-e5aa {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.notice-current-53fa {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.notice-current-53fa .outer-2dd1 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.top-c85c {
    margin-top: 2rem;
}

.top-c85c .feature-left-edcf {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.blue_484a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.section_5d5e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .section_5d5e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.section_5d5e .small-8256 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.paragraph-9342 {
    margin: 2rem 0;
}

.block_989c {
    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 */
.frame_ce07 {
    padding: var(--section-padding);
}

.aside-ad9d {
    margin-top: 1rem;
}

.gallery-selected-7c57 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.gallery-selected-7c57 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.gallery-selected-7c57 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.box-daba {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hover-upper-e81b {
    margin: 2rem 0;
}

.primary-6927 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.fresh_1266 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.preview_focused_b3eb {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.tall_496a {
    margin: 2rem 0;
}

.out-2075 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.out-2075 .in_b184 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.out-cb1d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .out-cb1d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.info-medium-4f43 {
    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);
}

.icon_43ee {
    color: var(--text-white);
    font-weight: 600;
}

.footer-6f17 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.icon-pressed-ad9a {
    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);
}

.icon-pressed-ad9a p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.message_2392 {
    padding: var(--section-padding);
}

.summary-4030 {
    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;
}

.summary-4030:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.blue-6166 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blue-6166 .first-713f {
    font-size: 2rem;
    flex-shrink: 0;
}

.blue-6166 .tooltip-complex-eff2 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.caption-pink-941f {
    flex: 1;
}

.tag_red_bba8 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.small-f053 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.small-f053 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.small-f053 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.chip_fdd5 {
    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);
}

.chip_fdd5 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.chip_fdd5 strong {
    color: var(--warning-color);
}

/* Slots Section */
.black_e5ec {
    padding: var(--section-padding);
}

.white-4dfb {
    margin: 2rem 0;
}

/* Table Games Section */
.tooltip_static_df6a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.module_70f0 {
    margin: 2rem 0;
}

.motion_1f4a {
    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);
}

.motion_1f4a:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.motion_1f4a .hard_cff1 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.motion_1f4a .hard_a00a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.list_hard_09c8 {
    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);
}

.list_hard_09c8 .nav-selected-3d7b {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.under_30c9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.lite_a87a {
    margin: 2rem 0;
}

.small_d0b3 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pressed-59bd {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.thumbnail_a650 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hover-fixed-1c4c {
    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);
}

.hover-fixed-1c4c:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.hover-fixed-1c4c.fn-active-ab19 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hidden_bright_4804 {
    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);
}

.pattern_eb7b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.pattern_eb7b strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.tall-9723 {
    padding: var(--section-padding);
}

.column_motion_ed92 {
    margin: 2rem 0;
}

.column-focused-fe39 {
    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);
}

.column-focused-fe39:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .column-focused-fe39 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.slow_32d0 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.logo-d732 {
    flex: 1;
}

.tooltip-26ac {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.shade_silver_3488 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.accent-center-e89c {
    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;
}

.mask-3595 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.widget_41a6 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.dynamic-b5fb {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.left-7e7c {
    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;
}

.left-7e7c:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.label-steel-3803 {
    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);
}

.white-de7c {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.white-de7c strong {
    color: var(--accent-color);
}

/* New Games Section */
.info-0203 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.selected-c89a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .selected-c89a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .selected-c89a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.module-light-3e00 {
    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;
}

.module-light-3e00:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.down_7698 {
    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;
}

.dim-1a60 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.input_bottom_d8d5 {
    font-size: 2rem;
}

.logo-1dde {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.component_66a9 {
    flex: 1;
}

.label_inner_b1af {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.current_5a63 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stale-80fe {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.caption_75f7 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.last-05ca {
    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;
}

.element_261a {
    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;
}

.element_261a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.hover-197a {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.static_9c89 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.smooth_964b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .smooth_964b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.block_2247 {
    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);
}

.wide-b919 {
    color: var(--text-white);
    font-weight: 600;
}

.middle-7aaa {
    color: var(--accent-color);
    font-weight: 600;
}

.stale_6148 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.stale_6148 strong {
    color: var(--accent-color);
}

/* Security Section */
.action-996a {
    padding: var(--section-padding);
}

/* Benefits Section */
.sort-wood-9394 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.mask_ea19 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.component-prev-2037 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.surface_soft_69ca {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.dark_59f9 {
    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) {
    .dark_59f9 {
        flex-direction: column;
        gap: 1rem;
    }
}

.dark_59f9:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.dark_59f9 .secondary_0156 {
    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;
}

.dark_59f9 .sidebar-solid-051d {
    flex: 1;
}

.dark_59f9 .block-1128 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.dark_59f9 .input-79c6 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.header-out-eb79 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.header-out-eb79 .sidebar_yellow_04fa {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.header-out-eb79 .box_e194 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-out-eb79 .box_e194 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.header-out-eb79 .box_e194 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.aside-out-2655 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.center_1185 {
    padding: var(--section-padding);
}

.gallery-b014 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .gallery-b014 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.item-2ecb {
    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);
}

.item-2ecb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.item-2ecb .gold-c027 {
    font-size: 2rem;
    flex-shrink: 0;
}

.item-2ecb .heading-out-ba67 {
    flex: 1;
}

.item-2ecb .header-977b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.item-2ecb .card-new-163e {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.left-c64f {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.left-c64f .element-5204 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.left-c64f .shade-dab6 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.left-c64f .shade-dab6 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);
}

.left-c64f .shade-dab6 li:last-child {
    border-bottom: none;
}

.left-c64f .shade-dab6 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;
}

.left-c64f .shade-dab6 li strong {
    color: var(--text-white);
}

.basic_25be {
    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);
}

.basic_25be p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.basic_25be strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.shade-wood-d802 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.full-1303 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .full-1303 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.button_3189 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.button_3189:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.column-west-b52c {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.south-c0ac {
    font-size: 2rem;
}

.next-a5c9 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.thick-c081 {
    flex: 1;
}

.stone_f7b2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stone_f7b2 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.stone_f7b2 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.active-bottom-d3e3 {
    margin-top: 3rem;
}

.popup-cf05 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.in_c092 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.stone-091d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stone-091d li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.stone-091d li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.stone-091d li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.panel-smooth-0978 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.background_old_7d26 {
    margin: 2rem 0;
}

.clean-abca {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.clean-abca .in_b184 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.photo-inner-2588 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .photo-inner-2588 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature_green_4b7b {
    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);
}

.feature_green_4b7b:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.smooth-6eee {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.panel-hovered-7aee {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.carousel_center_8010 {
    padding: var(--section-padding);
}

.nav_6a14 {
    margin: 2rem 0;
}

.search-selected-b345 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .search-selected-b345 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .search-selected-b345 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.overlay_c6b8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.overlay_c6b8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.bright-20c4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.glass-26a8 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.content_large_3e31 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.content_large_3e31.bright-cd6e {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.picture-gas-5c24 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.breadcrumb-427c {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.pink_3749 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.slow-5582 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.background-b0cb {
    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);
}

.background-b0cb p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.background-b0cb strong {
    color: var(--accent-color);
}

/* Update Log Section */
.short_f261 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.element_3879 {
    margin: 2rem 0;
}

.hero-a638 {
    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) {
    .hero-a638 {
        flex-direction: column;
        gap: 1rem;
    }
}

.hero-a638:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.hero-a638::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);
}

.hero_tiny_7515 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.clean-e57d {
    flex: 1;
}

.slow_681b {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.widget-simple-6ce7 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-simple-6ce7 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.surface_selected_ced7 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.chip_bright_acf6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tag_b587 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .tag_b587 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.advanced_6d61 {
    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);
}

.summary_5588 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.iron_06d6 {
    flex: 1;
}

.backdrop-medium-dfdc {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.text_8b07 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.row_0c2a {
    margin-top: 2rem;
    text-align: center;
}

.active_cffd {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.active_cffd strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.chip_32a8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .chip_32a8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.photo_bottom_f7af {
    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);
}

.photo_bottom_f7af:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.photo_bottom_f7af .pro-f834 {
    font-size: 2rem;
    flex-shrink: 0;
}

.photo_bottom_f7af .bright-6be6 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.photo_bottom_f7af .center-9f16 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.photo_bottom_f7af .search_c7e1 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.heading_south_7172 {
    padding: var(--section-padding);
}

.icon-old-38f6 .shade-lower-2dcc {
    flex: 1;
}

/* Promo Calendar Section */
.fast-c30d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.title_9435 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .title_9435 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.easy_cb92 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.summary-over-410b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.heading_new_0baa {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pressed-3ac6 {
    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);
}

.stone-ce3e {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.over_7e43 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.description_23bf {
    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);
}

.description_23bf p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.description_23bf strong {
    color: var(--accent-color);
}

/* Requirements Section */
.section-6d05 {
    padding: var(--section-padding);
}

.fixed-521e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .fixed-521e {
        grid-template-columns: repeat(2, 1fr);
    }
}

.article-2944 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.secondary_9cd4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.logo-fluid-5423 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.logo-fluid-5423 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.rough_2956 {
    margin-top: 3rem;
}

.rough_2956 .popup-cf05 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.rough_2956 .in_c092 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.rough_2956 .stone-091d {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.rough_2956 .stone-091d li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.rough_2956 .stone-091d li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.rough_2956 .stone-091d li strong {
    color: var(--warning-color);
}

.full-9af7 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.full-9af7 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.text_fdaa {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.input-e907 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .input-e907 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.border-3ff8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.border-3ff8 .in_b184 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.banner-lower-d562 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.button_e604 {
    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);
}

.button_e604:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.feature-8828 {
    font-size: 2rem;
    flex-shrink: 0;
}

.focused_6ebb {
    flex: 1;
}

.active_a341 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.section_e4f4 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.black-50e3 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.grid_e378 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.texture-cdfb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .texture-cdfb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.center_2449 {
    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);
}

.center_2449:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.static-aa10 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.pagination_9ecf {
    color: var(--text-gray);
    font-size: 1rem;
}

.motion-3026 {
    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);
}

.media-35b1 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.media-35b1 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.gallery-a0d6 { 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; }
.image-420a, .mask-e051 { max-width:100%; height:auto; }

.menu_7751, .secondary-hovered-ca17, .dynamic_4c3a { white-space:normal; }

.dirty_c5c0,
.copper-f0eb,
.alert-ca5a,
.chip_32a8,
.caption-east-93cd,
.layout-paper-bd2c {
  flex-wrap:wrap;
}

[class*="grid"],
.texture-cdfb,
.search-selected-b345,
.wrapper_bright_6c8c {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.container_green_0e4b img,
.copper-f0eb img,
.block-left-1fe4 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.hidden-tiny-56fe, .shade_north_464d,
.table-1aa3, .tertiary-fb95 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.button_7a9e { width:100%; overflow-x:auto; }
.button_7a9e table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.title-cold-31ef {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .title-cold-31ef {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.grid-plasma-8108 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.carousel_3c8f,
.active-e8d1,
.message_selected_bd66,
.tiny-352d,
.active_complex_64d5,
.texture-cdfb,
.search-selected-b345,
.wrapper_bright_6c8c,
.grid-11bd,
.column_motion_ed92,
.title-cold-31ef {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .carousel_3c8f,
  .active-e8d1,
  .message_selected_bd66,
  .tiny-352d,
  .active_complex_64d5,
  .texture-cdfb,
  .search-selected-b345,
  .wrapper_bright_6c8c,
  .grid-11bd,
  .column_motion_ed92,
  .title-cold-31ef {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.glass-9630,
.active-db84,
.center_2449,
.shadow-in-1424,
.overlay_c6b8,
.fresh_4a99,
.column-focused-fe39,
.grid-plasma-8108 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.medium-f703,
.column_center_31f5,
.short_4e93 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.medium-f703 > *,
.column_center_31f5 > *,
.short_4e93 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: d4f2 */
.shadow-element-b6 {
  padding: 0.5rem;
  font-size: 11px;
  line-height: 1.2;
}
