/* {$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;
}

.thumbnail_dim_c10c {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.in-f45f {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .in-f45f {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .in-f45f {
        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 */
.hot_a9e0 {
    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);
}

.grid-west-f2d1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .grid-west-f2d1 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .steel_c503 {
        grid-column: 1;
    }
    
    .title_7549 {
        grid-column: 2;
    }
    
    .disabled-590e {
        grid-column: 3;
    }
}

.steel_c503 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.steel_c503:hover img {
    transform: scale(1.05);
}

/* Navigation */
.link-1f52 {
    display: none;
}

@media (min-width: 1024px) {
    .link-1f52 {
        display: block;
    }
}

/* Grouped Navigation */
.form-full-a288 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.popup-6b80 {
    position: relative;
}

.label_daf0 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.popup-6b80 .chip-cb26 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.chip-cb26 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.paper-d3b0 {
    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;
}

.paper-d3b0:hover,
.paper-d3b0.fn-active-a983 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.column_prev_183c {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .column_prev_183c {
        display: flex;
    }
}

/* Mobile Register Button */
.title_7549 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .title_7549 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.label-b06f {
    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;
}

.label-b06f::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 */
.disabled-590e {
    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) {
    .disabled-590e {
        display: none;
    }
}

.disabled-590e span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.disabled-590e.fn-active-a983 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.disabled-590e.fn-active-a983 span:nth-child(2) {
    opacity: 0;
}

.disabled-590e.fn-active-a983 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.preview_dd42 {
    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;
}

.preview_dd42.fn-active-a983 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.module-2d39 {
    overflow: hidden;
}

.east_2c44 {
    list-style: none;
    padding: 0.75rem 0;
}

.layout_f635 {
    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;
}

.layout_f635:hover,
.layout_f635.fn-active-a983 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.layout_f635.wrapper-4411 {
    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;
}

.layout_f635.wrapper-4411::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 */
.block-262a {
    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;
}

.description-first-b598 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.description-first-b598:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.carousel_59e3 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.carousel_59e3:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.static_5bd7 {
    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;
}

.static_5bd7:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.text_eb36 {
    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;
}

.video_c37a {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.video_c37a:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.simple_c7e6 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.simple_c7e6:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.stone-ff37 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.stone-ff37: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);
}

.preview-6a43 {
    font-size: 1em;
    font-weight: 700;
}

.search_lower_4a5b {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.content_1957 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.content_1957::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;
}

.center-f4ef {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .center-f4ef {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.over-9f39 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.layout_b60c {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.article-focused-9dcd {
    margin-bottom: 2rem;
}

.medium-374f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .medium-374f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.nav_2f07 {
    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);
}

.stale_da1f {
    font-size: 1.5rem;
}

.button-e035 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.under-6e44 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-d6fb {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.content-d6fb:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.dropdown-97d7 {
    text-align: center;
    margin-bottom: 3rem;
}

.dim-52ee {
    margin-bottom: 1rem;
}

.inner-1d52 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.medium_6c22 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .medium_6c22 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .medium_6c22.aside-3c49 {
        direction: rtl;
    }
    
    .medium_6c22.aside-3c49 > * {
        direction: ltr;
    }
}

.filter-c8bf {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.filter-c8bf:first-child {
    margin-top: 0;
}

.hover-d90a {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.image-mini-4048 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.image-mini-4048:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.media-acd9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .media-acd9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bright_b52b {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.smooth-9e5a {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.gas_5ab2 {
    list-style: none;
}

.gas_5ab2 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gas_5ab2 li:last-child {
    border-bottom: none;
}

/* Games Features */
.black_072a {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.active_db1a {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.component-7054 {
    font-size: 2rem;
    flex-shrink: 0;
}

.menu_d106 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.text-c463 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.breadcrumb-1b31 {
    margin: 2rem 0;
}

.logo-dark-3bf7 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.row-narrow-17ef {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.avatar_8ef1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.picture_de92 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.tertiary-e272 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tertiary-e272 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.picture_3356 {
    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);
}

.picture_3356:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.dim_9c5d {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.search-744a {
    font-size: 1.5rem;
}

.progress-4207 {
    color: var(--accent-color);
    margin: 0;
}

.under_dcc3 {
    list-style: none;
}

.under_dcc3 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.under_dcc3 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.copper_723a {
    margin: 2rem 0;
}

.smooth-5082 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.link-white-3858 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .link-white-3858 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.smooth-f52e {
    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);
}

.pro_0e24 {
    font-size: 1.25rem;
}

.lite_cfe8 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.outer-2c24,
.search_bright_672c {
    text-align: center;
    margin: 2rem 0;
}

.motion-bf4f,
.modal-f70f {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.main_full_e825 {
    margin: 2rem 0;
    text-align: center;
}

.gas-6ee8 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gas-6ee8::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;
}

.banner-ce28 {
    position: relative;
    z-index: 1;
}

.avatar-clean-46fe {
    margin-bottom: 1rem;
}

.last-6da5 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gold_410e {
    margin-bottom: 3rem;
}

.column-fresh-81b7 {
    margin-top: 3rem;
}

.yellow_d615 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .yellow_d615 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.yellow_d615 .nav_2f07 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.component_current_2a2e {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.motion-89db {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.pagination-1665 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.logo-b6ac {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .logo-b6ac {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .logo-b6ac {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.detail_brown_4d1b {
    margin-bottom: 1rem;
}

.red_02be img {
    margin-bottom: 1rem;
}

.focus-fast-9f67 {
    color: var(--text-gray);
    line-height: 1.6;
}

.thumbnail_soft_4c62 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.tall_f6b5 {
    list-style: none;
}

.tall_f6b5 li {
    margin-bottom: 0.5rem;
}

.tall_f6b5 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.tall_f6b5 a:hover {
    color: var(--accent-color);
}

.form_a4cb {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.backdrop_0fbe {
    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);
}

.backdrop_0fbe:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.wood-1b79 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.wood-1b79 p {
    margin-bottom: 0.25rem;
}

.outline_f90f {
    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) {
    .outline_f90f {
        flex-direction: row;
    }
}

.article-6313 {
    text-align: center;
}

@media (min-width: 768px) {
    .article-6313 {
        text-align: left;
    }
}

.article-6313 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.outline_rough_27f5 {
    font-size: 0.75rem !important;
}

.dark-4d4a {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.small_4a55 {
    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);
    }
}

.grid_white_78fe {
    animation: fadeInUp 0.6s ease-out;
}

.slider_right_4993 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.west-b901 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .west-b901 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.progress-8d99 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .progress-8d99 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.border_medium_3a5b {
    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);
}

.border_medium_3a5b .component-7054 {
    font-size: 1.25rem;
}

.border_medium_3a5b .progress_fast_9c4d {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.item_f067 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .item_f067 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.caption_dim_d661 {
    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);
}

.caption_dim_d661:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.breadcrumb-1fad {
    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);
}

.primary_left_8d32 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.cool-8b00 {
    color: var(--text-gray);
    line-height: 1.6;
}

.filter_complex_efda {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.frame-middle-0be7 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.frame-middle-0be7 .menu_d106 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.frame-middle-0be7 .text-c463 {
    color: var(--text-gray);
    line-height: 1.6;
}

.lower-69cf {
    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);
}

.tabs-831d {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.tabs-831d img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.tabs-831d img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.photo-mini-d7d0 {
    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);
}

.small_7999 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.message-up-30dd {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.message-up-30dd label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.message-up-30dd 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);
}

.message-up-30dd input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.message-up-30dd input::placeholder {
    color: var(--text-muted);
}

.steel-e7b1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.disabled_huge_f7e8 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.disabled_huge_f7e8 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.pink-1fa1 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.pink-1fa1:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.link-white-3858 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .link-white-3858 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.smooth-f52e {
    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);
}

.smooth-f52e .pro_0e24 {
    font-size: 1.25rem;
}

.smooth-f52e .lite_cfe8 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.panel_lower_1b46 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hard-0a26 {
    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);
}

.hard-0a26 .component-7054 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hard-0a26 .menu_d106 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hard-0a26 .text-c463 {
    color: var(--text-gray);
    line-height: 1.6;
}

.lower-44f7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pattern-selected-b0b1 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.pattern-selected-b0b1 .texture-orange-4e34 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.pattern-selected-b0b1 .complex_241f {
    color: var(--text-gray);
    line-height: 1.6;
}

.picture-1ee6 {
    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);
}

.banner-under-2eea {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .banner-under-2eea {
        grid-template-columns: repeat(3, 1fr);
    }
}

.alert-last-c284 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    transition: var(--transition-normal);
}

.alert-last-c284:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.white-7678 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.sort_plasma_27e3 {
    flex: 1;
}

.tertiary_fresh_b924 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.card_west_a6aa {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.breadcrumb-7852 {
    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);
}

.breadcrumb-7852:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.dropdown_motion_d750 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dropdown_motion_d750 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.shadow-b992 {
    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);
}

.shadow-b992:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.wrapper-rough-cc91 {
    font-size: 2rem;
    flex-shrink: 0;
}

.large-fc77 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.last-f365 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.article_west_5a9a {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.photo-d62b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.brown_d49d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.copper-6ca9 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.copper-6ca9 .tiny_0eb8 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.copper-6ca9 .complex-bf97 {
    color: var(--text-gray);
    line-height: 1.6;
}

.black-5e3b {
    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);
}

.item_over_62b2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.alert-732e {
    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);
}

.alert-732e .component-7054 {
    font-size: 2rem;
    flex-shrink: 0;
}

.alert-732e .menu_d106 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.alert-732e .text-c463 {
    color: var(--text-gray);
    line-height: 1.6;
}

.photo_soft_f451 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .photo_soft_f451 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.row-short-53ad {
    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);
}

.row-short-53ad:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.preview_977e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .preview_977e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.plasma-1c19 {
    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);
}

.plasma-1c19:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.backdrop_west_7163 {
    font-size: 2rem;
    flex-shrink: 0;
}

.steel_2333 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.row-narrow-17ef {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.nav-clean-08bf {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.focus-02da {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.input-f404 {
    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);
}

.input-f404:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.status_cb7e {
    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);
}

.text-4cff {
    flex: 1;
}

.tag-west-4183 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.smooth-6d69 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.aside-narrow-f004 {
    color: var(--text-gray);
    line-height: 1.6;
}

.texture_737c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gold-22a1 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gold-22a1 .texture-orange-4e34 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.gold-22a1 .complex_241f {
    color: var(--text-gray);
    line-height: 1.6;
}

.search_bright_672c {
    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);
}

.search_70bc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .search_70bc {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.label_prev_d028 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .label_prev_d028 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.blue-6aff {
    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);
}

.blue-6aff:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.detail_lite_10a9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.breadcrumb_pro_6800 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.preview_last_e9cc {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.south_2a72 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.summary-f967 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pressed-7eb6 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.title_out_83a1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.plasma-2269 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.complex_1bb9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.item_over_62b2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.alert-732e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.alert-732e .menu_d106 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.alert-732e .text-c463 {
    color: var(--text-gray);
    line-height: 1.6;
}

.info-edbd {
    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);
}

.dynamic-b039 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .dynamic-b039 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .dynamic-b039 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.search-old-4f1d {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.search-old-4f1d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.picture-93a7 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.paper_435e {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.active_d5fb {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.text-east-b9ab {
    padding: 1.5rem;
}

.button-66e8 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.paper_06e5 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.paper_06e5 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;
}

.paper_06e5 li:last-child {
    border-bottom: none;
}

.paper_06e5 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.thick_9999 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .thick_9999 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accent-c72d {
    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);
}

.accent-c72d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.easy_7aee {
    font-size: 2rem;
    flex-shrink: 0;
}

.disabled_paper_2821 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.narrow_25df {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.small_cf3f {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.wrapper-8cf8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.list-small-24a7 {
    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);
}

.primary_current_17f3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.component_1c51 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.form-c5ec {
    color: var(--text-gray);
    line-height: 1.6;
}

.old_a5ea {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.module-1cce {
    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);
}

.button_east_bb42 {
    text-align: center;
}

.pattern-7ba1 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.pressed_073e {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.active_9349 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gradient-0146 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gradient-0146 .menu_d106 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.gradient-0146 .text-c463 {
    color: var(--text-gray);
    line-height: 1.6;
}

.accent-current-ae06 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .accent-current-ae06 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .accent-current-ae06 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stone-ffd3 {
    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-ffd3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tall-a011 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.alert-white-b006 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.menu_d106 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.preview-bronze-85b8 {
    padding: 1.5rem;
}

.text-c463 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.menu-e03d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-e03d 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;
}

.menu-e03d li:last-child {
    border-bottom: none;
}

.menu-e03d li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.focus-94f2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.tall-cb1b {
    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);
}

.tall-cb1b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.west_ec8d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.small-6bf2 {
    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);
}

.breadcrumb-1fad {
    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;
}

.primary_left_8d32 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.cool-8b00 {
    color: var(--text-gray);
    line-height: 1.6;
}

.smooth-4e84 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.south_1683 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.hidden-top-f2a7 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.warm_b53d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.form-5e95 {
    display: flex;
    gap: 1rem;
}

.form-5e95 .gold_b82b {
    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;
}

.narrow_0642 {
    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);
}

.secondary_98fd {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.shade-5c13 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shade-5c13 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;
}

.shade-5c13 li:last-child {
    border-bottom: none;
}

.shade-5c13 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.footer_f356 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .footer_f356 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer_f356 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.red_bbbd {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.red_bbbd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.photo_20dc {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.heading-iron-e9e8 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.tiny_0eb8 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.red_ec1a {
    font-size: 1rem;
}

.filter-e2ec {
    padding: 1.5rem;
}

.complex-bf97 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.list_b18e {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.list_b18e .button_east_bb42 {
    text-align: center;
}

.list_b18e .pressed_073e {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.list_b18e .banner-easy-ff37 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.list_black_e932 {
    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);
}

.list_black_e932:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.first_da71 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .first_da71 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tooltip-down-ac60 {
    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);
}

.tooltip-down-ac60:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.avatar-15b6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.description_hot_8be9 {
    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);
}

.row-5f1e {
    font-size: 2rem;
    flex-shrink: 0;
}

.article-steel-713d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.panel_05ef {
    color: var(--text-gray);
    line-height: 1.6;
}

.disabled-green-2ece {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.top-449d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sidebar_cd9b {
    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);
}

.primary_409e {
    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;
}

.primary_409e.solid_ac47 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.primary_409e.text_c372 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.primary_409e.active-5807 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.primary_409e.hidden_d80f {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.primary_409e.full_33b6 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.table_lower_b2cb {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.complex_d28a {
    color: var(--text-gray);
    line-height: 1.6;
}

.dropdown_steel_b4ea {
    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);
}

.tabs_4d00 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.lower-44f7 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lower-44f7 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;
}

.lower-44f7 li:last-child {
    border-bottom: none;
}

.lower-44f7 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.table_last_8a63 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .table_last_8a63 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .table_last_8a63 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wood_d43e {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.wood_d43e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.wood_d43e.progress_first_b12c {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .wood_d43e.progress_first_b12c {
        grid-column: span 3;
    }
}

.container-bdd4 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.wood_d43e.progress_first_b12c .container-bdd4 {
    background: rgba(6, 182, 212, 0.1);
}

.center_84d4 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.right_80d6 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.wood_d43e.progress_first_b12c .right_80d6 {
    color: var(--info-color);
}

.up_2b1f {
    padding: 1.5rem;
    text-align: center;
}

.frame-green-73bc {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.wood_d43e.progress_first_b12c .frame-green-73bc {
    color: var(--info-color);
}

.tiny-b45e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.module_tiny_f3ae {
    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 */
.stale-bbd3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .stale-bbd3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.link_ac8b {
    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);
}

.link_ac8b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.message-b6c4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hard-0a26 {
    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);
}

.pro_0e24 {
    font-size: 2rem;
    flex-shrink: 0;
}

.narrow_6b85 {
    flex: 1;
}

.smooth-5082 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.description-wood-40dd {
    color: var(--text-gray);
    line-height: 1.6;
}

.dirty-83fc {
    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);
}

.gradient-gold-27b3 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.hot-c3cf {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.small_4a55 {
    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);
}

.description_center_00e8 {
  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);
}

.description_center_00e8 .button_east_bb42 {
    text-align: center;
}

.description_center_00e8 .pattern-7ba1 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.description_center_00e8 .pressed_073e {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.yellow-76ef {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.overlay-bright-1fb4 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.content_39cf {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.short-330b {
    color: var(--text-gray);
    line-height: 1.6;
}

.item-b582 {
    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);
}

.text-static-2885 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.primary_c0e4 {
    color: var(--text-gray);
    line-height: 1.6;
}

.item_dirty_466d {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .item_dirty_466d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .item_dirty_466d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sort-f708 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.sort-f708:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.current-de84 {
    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);
}

.picture-d805 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.texture-narrow-0c0e {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.row-3b83 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.row-3b83.footer_6edc {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.row-3b83.progress_cool_1556 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.row-3b83.panel_warm_2e82 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.component-motion-258e {
    padding: 1.5rem;
    text-align: center;
}

.selected_85cb {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hover_dda1 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.hover_dda1 .gradient_eacf {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.summary_clean_c0f4 {
    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);
}

.summary_clean_c0f4:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.tabs_9df3 {
  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);
}

.dropdown-mini-ccd3 {
    text-align: center;
}

.dropdown-mini-ccd3 .pattern-7ba1 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.dropdown-mini-ccd3 .pressed_073e {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.short-f4b7 { text-align: center; }
.small_1700 { text-align: left; }
.secondary_dirty_c80a { text-align: right; }

.silver_3372 { margin-bottom: 0; }
.hovered_5a4d { margin-bottom: 0.5rem; }
.selected-76a9 { margin-bottom: 1rem; }
.active-under-93c9 { margin-bottom: 1.5rem; }
.photo_b938 { margin-bottom: 2rem; }

.tag_e843 { margin-top: 0; }
.advanced-9138 { margin-top: 0.5rem; }
.layout-cce2 { margin-top: 1rem; }
.container-13a1 { margin-top: 1.5rem; }
.progress-8e61 { margin-top: 2rem; }

.fn-hidden-a983 { display: none; }
.fn-visible-a983 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .content_1957 {
        padding: 6rem 0 3rem;
    }
    
    .center-f4ef {
        text-align: center;
    }
    
    .medium_6c22 {
        text-align: center;
    }
    
    .medium-374f {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .hot_a9e0,
    .preview_dd42,
    .gas-6ee8,
    .pagination-1665 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .content_1957 {
        background: none;
    }
}

/* Providers Section */
.hot-ef78 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.text_yellow_bb89 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .text_yellow_bb89 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .text_yellow_bb89 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.main_solid_67e3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.main_solid_67e3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.outline_9cc7 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.filter-17e8 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.rough_0385 {
    list-style: none;
    padding: 0;
}

.rough_0385 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.rough_0385 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.over_ada2 {
    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);
}

.over_ada2 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.input_soft_6c20 {
    padding: var(--section-padding);
}

.module-mini-9f29 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .module-mini-9f29 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.text-fed0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.text-fed0:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.blue-77cb {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.accent-yellow-a16d {
    display: flex;
    flex-direction: column;
}

.button_8beb {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.smooth_88d4 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.disabled-2a20 {
    color: var(--accent-color);
}

.mask_740c {
    font-size: 1.25rem;
}

.warm-9756 {
    margin-bottom: 1rem;
}

.warm-9756 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.plasma_748e {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.menu_cool_46c5 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.button_east_bb42 {
    text-align: center;
}

.pattern-7ba1 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.pressed_073e {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.active-dynamic-e304 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.widget-brown-ed84 {
    margin: 2rem 0;
}

.text_huge_c2dc {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.text_huge_c2dc .component-7054 {
    font-size: 2rem;
    flex-shrink: 0;
}

.wood_8e0e {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.nav-a542 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: var(--transition-normal);
    flex: 1;
    min-width: 200px;
}

.nav-a542:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.heading_out_255c {
    font-size: 2rem;
}

.action_db9b {
    display: flex;
    flex-direction: column;
}

.picture-selected-eef2 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.pressed_4745 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.component-center-ee4e {
    padding: var(--section-padding);
}

.banner_d000 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .banner_d000 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .banner_d000 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer_steel_7277 {
    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);
}

.footer_steel_7277:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.footer_steel_7277 .pattern-7ba1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.footer_steel_7277 .pressed_073e {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.footer_steel_7277 .warm_d243 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.dropdown-orange-9f52 {
    margin-top: 4rem;
}

.primary-6c9c {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.heading-30de {
    overflow-x: auto;
}

.white_ca98 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.white_ca98 thead {
    background: var(--accent-color);
}

.white_ca98 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.white_ca98 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.white_ca98 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.white_ca98 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.footer-smooth-9ed4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.highlight_be2a {
    max-width: 900px;
    margin: 0 auto;
}

.info-6c28 {
    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);
}

.info-6c28:hover {
    border-color: var(--accent-color);
}

.hovered-d5cb {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.hovered-d5cb h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.text_ebd4 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.info-6c28.fn-active-a983 .text_ebd4 {
    transform: rotate(45deg);
}

.fluid-c484 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.info-6c28.fn-active-a983 .fluid-c484 {
    max-height: 1000px;
}

.fluid-c484 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.banner-bcf5 {
    padding: var(--section-padding);
}

.tabs-831d {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.image-713f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.paragraph-full-1438 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .paragraph-full-1438 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.title-solid-29d3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.container-2fd1 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.alert_bright_5205 {
    font-size: 2rem;
}

.dropdown_b003 {
    color: var(--text-white);
    margin: 0;
}

.message_lite_3388 {
    list-style: none;
    padding: 0;
}

.message_lite_3388 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.message_lite_3388 li:last-child {
    border-bottom: none;
}

.banner_2d6a {
    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);
}

.banner_2d6a p {
    color: var(--success-color);
    margin: 0;
}

.yellow_4bf3 {
    margin-top: 3rem;
}

.secondary_98fd {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.slider_static_0ebd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .slider_static_0ebd {
        grid-template-columns: repeat(2, 1fr);
    }
}

.cold-b03e {
    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);
}

.dim_688e {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cold-b03e p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.hot-4c4e {
    padding: var(--section-padding);
}

.card_eb31 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .card_eb31 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.widget_complex_74fc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.widget_complex_74fc:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.plasma_ae06 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.motion_003e {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.primary-hot-6c12 {
    flex: 1;
}

.video_2447 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.container_advanced_fb41 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.table-glass-00c2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.new-069f {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.new-069f:last-child {
    border-bottom: none;
}

/* Comparison Section */
.link_3acf {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.video-wood-f681 {
    padding: var(--section-padding);
}

.border-f931 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.preview-c907 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .preview-c907 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card_b48e {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.photo-lower-450b, .badge_paper_b55e, .list_27b8 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.list_27b8 {
    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 */
.item_light_e3e1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.brown_8957 {
    margin: 2rem 0;
}

.under_64e8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pattern-paper-ae2b {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.cold_c4fe {
    list-style: none;
    padding: 0;
}

.cold_c4fe 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;
}

.cold_c4fe li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.cold_c4fe li:last-child {
    border-bottom: none;
}

.thick_e206 {
    text-align: center;
    margin-top: 2rem;
}

.tall_3354 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.progress_c991 {
    padding: var(--section-padding);
}

.button-stone-a185 {
    margin: 2rem 0;
}

.image_wood_4190 {
    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) {
    .image_wood_4190 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.image_wood_4190:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.caption_west_2a2b {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.purple-cb96 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.alert-ff16 {
    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;
}

.pattern_first_02fe {
    flex: 1;
}

.sort_5e6b {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.detail_65ed {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.hard-b5ee {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.pagination-in-94d1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .pagination-in-94d1 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.huge-cfad {
    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);
}

.huge-cfad:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.huge-cfad .pattern-7ba1 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.huge-cfad .pressed_073e {
    color: var(--text-gray);
    font-size: 1rem;
}

.soft-c4c0 {
    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);
}

.card_short_d676 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.card_short_d676 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.badge-hard-1208 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .badge-hard-1208 {
        grid-template-columns: 1fr 1fr;
    }
}

.progress-802c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.description-small-c61e {
    margin-bottom: 1.5rem;
}

.description-small-c61e label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.description-small-c61e input,
.description-small-c61e 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;
}

.description-small-c61e input:focus,
.description-small-c61e select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.surface_0896 {
    width: 100%;
    margin-top: 1rem;
}

.article-9401 {
    display: flex;
    align-items: center;
}

.video_outer_8feb {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.feature-2533 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.main-hot-5ae1 {
    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;
}

.basic_6fe2 {
    color: var(--text-gray);
}

.aside-8bff {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.fixed-d88a {
    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);
}

.fixed-d88a p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.accordion_thick_99e3 {
    margin-top: 3rem;
}

.summary_soft_8682 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.border-36ee {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.box_dirty_0b35 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.description_25a8 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.description_25a8:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.solid-952e {
    padding: var(--section-padding);
}

.main_f2bd {
    margin: 2rem 0;
}

.alert_soft_91e7 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.in_b02f {
    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;
}

.in_b02f:hover, .in_b02f.fn-active-a983 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.gradient_e496 {
    display: none;
}

.gradient_e496.fn-active-a983 {
    display: block;
}

.container-0c71 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.surface_dark_15ee {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.hover_5d02 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.hover_5d02 ul {
    list-style: none;
    padding: 0;
}

.hover_5d02 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.hover_5d02 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.brown_e3e3 {
    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 */
.short-1715 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.widget-acb1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hero_narrow_1648 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.carousel_hot_dfc8 {
    color: var(--accent-color);
    margin: 0;
}

.panel_f1fb {
    display: flex;
    gap: 1.5rem;
}

.card_7afd {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.label-dark-47c4 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.input-192f {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.input-192f.south_b25a {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.input-192f.easy_68e8 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.input-192f.paragraph_purple_a9cf {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.filter_narrow_d69f {
    margin-top: 2rem;
}

.sort_medium_c1b2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.caption-ec97 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .caption-ec97 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.rough-e99d {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.notification_1aa0 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.accent_prev_47ce {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.sort_green_d4c8 {
    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 */
.tag_focused_afad {
    padding: var(--section-padding);
}

.shade_fixed_ac19 {
    margin: 2rem 0;
}

.main-tiny-87c8 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.grid_3969 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.motion_83e3 {
    list-style: none;
    padding: 0;
}

.motion_83e3 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;
}

.motion_83e3 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.motion_83e3 li:last-child {
    border-bottom: none;
}

.row-medium-1552 {
    margin: 2rem 0;
}

.last_be7f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.heading_last_0e27 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .heading_last_0e27 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.secondary_27b4 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.badge_plasma_9c38 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.wrapper_down_5070 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.west_70e3 {
    margin-top: 2rem;
}

.tertiary_fresh_b924 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.north-2332 {
    list-style: none;
    padding: 0;
}

.left_8069 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.left_8069 a {
    color: var(--accent-color);
    text-decoration: none;
}

.left_8069 a:hover {
    text-decoration: underline;
}

.surface-soft-8844 {
    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 */
.smooth_15d7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.picture-398d {
    margin: 2rem 0;
}

.steel_5172 {
    margin-bottom: 3rem;
}

.steel_5172 .pattern-paper-ae2b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.mask-pink-1ee5 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.stale_b5e4 {
    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);
}

.stale_b5e4:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.first_9ea7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .first_9ea7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.popup_thick_18c2 {
    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 */
.accent-6d65 {
    padding: var(--section-padding);
}

.tall_9b3c {
    margin: 2rem 0;
}

.pattern-074a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.box-c300 {
    overflow-x: auto;
    margin: 2rem 0;
}

.button_e156 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.fast_c1cc {
    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;
}

.hidden-f57f {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.avatar-28b7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .avatar-28b7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fresh_7161 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.fresh_7161 .component-7054 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.fresh_7161 .menu_d106 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.input_soft_fa64 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.backdrop_02a4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.complex_888f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .complex_888f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.secondary_light_ec49 {
    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;
}

.secondary_light_ec49:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.accent-inner-64aa {
    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);
}

.next_89ce {
    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;
}

.widget-4726 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.current-13fd {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.column-9e88 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.header_d433 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.media-paper-d6e2 {
    color: var(--text-white);
    font-weight: 600;
}

.upper-ff5f {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.iron_8bd8 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.iron_8bd8 .gold_b82b {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.item_f5cd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .item_f5cd {
        grid-template-columns: repeat(4, 1fr);
    }
}

.link_silver_e87a {
    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);
}

.link_silver_e87a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.link_silver_e87a .pattern-7ba1 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.link_silver_e87a .pressed_073e {
    color: var(--text-gray);
    font-size: 1rem;
}

.pro-d917 {
    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);
}

.logo-basic-da7b {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.logo-basic-da7b strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.summary-f967 {
    margin: 2rem 0;
}

.pressed-7eb6 {
    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);
}

.pressed-7eb6:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.title_out_83a1 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.box_d755 {
    flex: 1;
}

.plasma-2269 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.complex_1bb9 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.item_over_62b2 {
    margin: 2rem 0;
}

.alert-732e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.alert-732e .menu_d106 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.alert-732e .text-c463 {
    color: var(--text-gray);
    margin: 0;
}

.info-edbd {
    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);
}

.info-edbd .motion-bf4f {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.input_soft_fa64 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.status_cb7e {
    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;
}

.text-4cff {
    flex: 1;
}

.smooth-6d69 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.aside-narrow-f004 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.breadcrumb-1fad {
    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;
}

.component-d38f {
    flex: 1;
}

.primary_left_8d32 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.cool-8b00 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.hidden-top-f2a7 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.warm_b53d {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.form-5e95 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.form-5e95 .gold_b82b {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.narrow_0642 {
    margin-top: 2rem;
}

.narrow_0642 .secondary_98fd {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.card-6b0e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.module-1cce {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .module-1cce {
        grid-template-columns: repeat(4, 1fr);
    }
}

.module-1cce .button_east_bb42 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.active_9349 {
    margin: 2rem 0;
}

.gradient-0146 {
    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 */
.bronze-b6c0 {
    padding: var(--section-padding);
}

.preview-bronze-85b8 {
    margin-top: 1rem;
}

.menu-e03d {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.menu-e03d li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.menu-e03d li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.info_296e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.bronze_d9fc {
    margin: 2rem 0;
}

.hero-white-74e2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.small-4515 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.panel-full-7458 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.info-middle-eab6 {
    margin: 2rem 0;
}

.medium_dfa6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.medium_dfa6 .pattern-paper-ae2b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.west_ed93 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .west_ed93 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-980e {
    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);
}

.overlay-a251 {
    color: var(--text-white);
    font-weight: 600;
}

.text-warm-4a98 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.highlight-08a9 {
    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);
}

.highlight-08a9 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.thick_287b {
    padding: var(--section-padding);
}

.banner-rough-0e34 {
    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;
}

.banner-rough-0e34:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.gold-2e1e {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gold-2e1e .dim_688e {
    font-size: 2rem;
    flex-shrink: 0;
}

.gold-2e1e .notice_hot_bf0e {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.highlight-af5c {
    flex: 1;
}

.card-upper-7ca3 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.badge_fast_db3e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.badge_fast_db3e li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.badge_fast_db3e li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.text_outer_e6a6 {
    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);
}

.text_outer_e6a6 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.text_outer_e6a6 strong {
    color: var(--warning-color);
}

/* Slots Section */
.chip_b302 {
    padding: var(--section-padding);
}

.photo-d62b {
    margin: 2rem 0;
}

/* Table Games Section */
.title_4bc6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.brown_d49d {
    margin: 2rem 0;
}

.copper-6ca9 {
    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);
}

.copper-6ca9:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.copper-6ca9 .tiny_0eb8 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.copper-6ca9 .complex-bf97 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.black-5e3b {
    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);
}

.black-5e3b .motion-bf4f {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.element-dark-edca {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.picture_8d20 {
    margin: 2rem 0;
}

.backdrop-gold-edc3 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.thumbnail_orange_5e8a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hero_steel_d6b3 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.simple-737a {
    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);
}

.simple-737a:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.simple-737a.fn-active-a983 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pattern-yellow-d687 {
    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);
}

.photo-818f {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.photo-818f strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.fluid_f0f3 {
    padding: var(--section-padding);
}

.image_65b0 {
    margin: 2rem 0;
}

.element_rough_2ad2 {
    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);
}

.element_rough_2ad2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .element_rough_2ad2 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.description_b8c1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.hover_5dd1 {
    flex: 1;
}

.article-green-0424 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.breadcrumb_ed2f {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.tertiary_full_6b8a {
    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;
}

.item-copper-de42 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hidden_top_483d {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.copper_f21f {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.logo-2db0 {
    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;
}

.logo-2db0:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.widget-05e0 {
    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);
}

.outer_b6f8 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.outer_b6f8 strong {
    color: var(--accent-color);
}

/* New Games Section */
.disabled-out-245f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.link-81ea {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .link-81ea {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .link-81ea {
        grid-template-columns: repeat(4, 1fr);
    }
}

.header-4d59 {
    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;
}

.header-4d59:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.dropdown-out-d9f4 {
    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;
}

.button-3a28 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.button_069d {
    font-size: 2rem;
}

.progress_88a9 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.small_71f9 {
    flex: 1;
}

.pagination-top-a007 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.active-41f1 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.block_huge_3704 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.in_ceba {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.content_blue_0e74 {
    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;
}

.tiny_3dae {
    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;
}

.tiny_3dae:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.container_old_6308 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.notice-glass-2c17 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.logo-action-d901 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .logo-action-d901 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tall_1a73 {
    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);
}

.background-11ce {
    color: var(--text-white);
    font-weight: 600;
}

.nav-33c0 {
    color: var(--accent-color);
    font-weight: 600;
}

.backdrop_3e02 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.backdrop_3e02 strong {
    color: var(--accent-color);
}

/* Security Section */
.box-5588 {
    padding: var(--section-padding);
}

/* Benefits Section */
.text-30da {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.element-69ab {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.form_c138 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.layout-wide-e274 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.popup_cfc3 {
    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) {
    .popup_cfc3 {
        flex-direction: column;
        gap: 1rem;
    }
}

.popup_cfc3:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.popup_cfc3 .breadcrumb-1fad {
    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;
}

.popup_cfc3 .component-d38f {
    flex: 1;
}

.popup_cfc3 .primary_left_8d32 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.popup_cfc3 .cool-8b00 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.column-84b9 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.column-84b9 .smooth-5082 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.column-84b9 .panel_lower_1b46 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.column-84b9 .panel_lower_1b46 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.column-84b9 .panel_lower_1b46 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.progress_fresh_17ed {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.accent-f7a1 {
    padding: var(--section-padding);
}

.slider-ff50 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .slider-ff50 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stone-0bb1 {
    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);
}

.stone-0bb1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.stone-0bb1 .bright_c073 {
    font-size: 2rem;
    flex-shrink: 0;
}

.stone-0bb1 .column_current_35ad {
    flex: 1;
}

.stone-0bb1 .texture-orange-4e34 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.stone-0bb1 .thumbnail-0a0b {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.title-narrow-b009 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.title-narrow-b009 .avatar_92f0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.title-narrow-b009 .hot_c183 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.title-narrow-b009 .hot_c183 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);
}

.title-narrow-b009 .hot_c183 li:last-child {
    border-bottom: none;
}

.title-narrow-b009 .hot_c183 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;
}

.title-narrow-b009 .hot_c183 li strong {
    color: var(--text-white);
}

.layout_d31c {
    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);
}

.layout_d31c p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.layout_d31c strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.prev-2064 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.button_f8e3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .button_f8e3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.block-7d4d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.block-7d4d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.smooth_7784 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.light_8c38 {
    font-size: 2rem;
}

.bronze-e848 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.article-new-7ae7 {
    flex: 1;
}

.breadcrumb_ea26 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb_ea26 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.breadcrumb_ea26 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.media-1596 {
    margin-top: 3rem;
}

.main-tiny-87c8 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.grid_3969 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.motion_83e3 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.motion_83e3 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.motion_83e3 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.motion_83e3 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.prev-b407 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.section-fluid-76e6 {
    margin: 2rem 0;
}

.detail_pressed_e43c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.detail_pressed_e43c .pattern-paper-ae2b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.detail-85d0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .detail-85d0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.box_pressed_f592 {
    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);
}

.box_pressed_f592:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.under-1893 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.grid-hard-b2a1 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.backdrop-dynamic-f9a2 {
    padding: var(--section-padding);
}

.large_d08d {
    margin: 2rem 0;
}

.carousel_blue_0904 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .carousel_blue_0904 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .carousel_blue_0904 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.list_up_226d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.list_up_226d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.medium_c00c {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.tooltip_left_0d2b {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.fluid-fca7 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.fluid-fca7.light_679c {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.gradient_slow_16e5 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.black-5fef {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.row-iron-2ee3 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.outline-5a1c {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.plasma-cc9b {
    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);
}

.plasma-cc9b p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.plasma-cc9b strong {
    color: var(--accent-color);
}

/* Update Log Section */
.black_ff21 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.alert_purple_f8a5 {
    margin: 2rem 0;
}

.image-fast-c8d5 {
    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) {
    .image-fast-c8d5 {
        flex-direction: column;
        gap: 1rem;
    }
}

.image-fast-c8d5:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.image-fast-c8d5::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);
}

.gas-8055 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.avatar-1c10 {
    flex: 1;
}

.caption_ed14 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.summary-9085 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.summary-9085 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.outline-right-d3f8 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.search-silver-69bb {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hidden-2d5a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hidden-2d5a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.filter_2f1b {
    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);
}

.plasma_698f {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.fast-1f70 {
    flex: 1;
}

.hover-ef07 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.paragraph_pressed_c7b7 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.pagination-liquid-6d6d {
    margin-top: 2rem;
    text-align: center;
}

.surface-center-1c83 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.surface-center-1c83 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.first_da71 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .first_da71 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tooltip-down-ac60 {
    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);
}

.tooltip-down-ac60:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.tooltip-down-ac60 .easy_7aee {
    font-size: 2rem;
    flex-shrink: 0;
}

.tooltip-down-ac60 .disabled_paper_2821 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.tooltip-down-ac60 .narrow_25df {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.tooltip-down-ac60 .small_cf3f {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.hovered_25cf {
    padding: var(--section-padding);
}

.description_hot_8be9 .narrow_e4f1 {
    flex: 1;
}

/* Promo Calendar Section */
.element-505f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.black_2391 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .black_2391 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.paragraph-da92 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.plasma-6921 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.current-0deb {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.box-66ad {
    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);
}

.avatar_170c {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.selected_725c {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.dynamic_690e {
    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);
}

.dynamic_690e p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.dynamic_690e strong {
    color: var(--accent-color);
}

/* Requirements Section */
.accent_gas_ebab {
    padding: var(--section-padding);
}

.pagination_red_22a7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .pagination_red_22a7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.carousel-fast-83a1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.menu-d8f3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.paper_1e7c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.paper_1e7c li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.label-0bf9 {
    margin-top: 3rem;
}

.label-0bf9 .main-tiny-87c8 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.label-0bf9 .grid_3969 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.label-0bf9 .motion_83e3 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.label-0bf9 .motion_83e3 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.label-0bf9 .motion_83e3 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.label-0bf9 .motion_83e3 li strong {
    color: var(--warning-color);
}

.complex_70a0 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.complex_70a0 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.video-cool-7b77 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.slider-a613 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .slider-a613 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.summary-plasma-5ca1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.summary-plasma-5ca1 .pattern-paper-ae2b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.hidden-d4ad {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.border-f8e8 {
    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);
}

.border-f8e8:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.gradient_99ec {
    font-size: 2rem;
    flex-shrink: 0;
}

.new-ef4d {
    flex: 1;
}

.surface-gold-d0d0 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.title-purple-a9c2 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.shade-be19 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.motion_182e {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.picture_selected_a66a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .picture_selected_a66a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.east-7963 {
    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);
}

.east-7963:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.paragraph_hard_86c9 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.container-d068 {
    color: var(--text-gray);
    font-size: 1rem;
}

.card_short_d676 {
    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);
}

.mini-971c {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.mini-971c strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.in-f45f { 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; }
.content-d6fb, .image-mini-4048 { max-width:100%; height:auto; }

.block-262a, .static_5bd7, .text_eb36 { white-space:normal; }

.center-f4ef,
.medium_6c22,
.stale-bbd3,
.first_da71,
.item_over_62b2,
.item_dirty_466d {
  flex-wrap:wrap;
}

[class*="grid"],
.picture_selected_a66a,
.carousel_blue_0904,
.yellow_d615 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.content_1957 img,
.medium_6c22 img,
.under-6e44 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.over-9f39, .layout_b60c,
.dim-52ee, .inner-1d52 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.heading-30de { width:100%; overflow-x:auto; }
.heading-30de table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.text_yellow_bb89 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .text_yellow_bb89 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.main_solid_67e3 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.banner_d000,
.logo-651e,
.component-4708,
.header-e7b5,
.pagination-in-94d1,
.picture_selected_a66a,
.carousel_blue_0904,
.yellow_d615,
.tabs_9df3,
.image_65b0,
.text_yellow_bb89 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .banner_d000,
  .logo-651e,
  .component-4708,
  .header-e7b5,
  .pagination-in-94d1,
  .picture_selected_a66a,
  .carousel_blue_0904,
  .yellow_d615,
  .tabs_9df3,
  .image_65b0,
  .text_yellow_bb89 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.footer_steel_7277,
.huge-cfad,
.east-7963,
.nav_2f07,
.list_up_226d,
.dropdown-mini-ccd3,
.element_rough_2ad2,
.main_solid_67e3 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.under_b01f,
.highlight_467d,
.focus_d68f {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.under_b01f > *,
.highlight_467d > *,
.focus_d68f > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 2fd9 */
.widget-item-o1 {
  padding: 0.4rem;
  font-size: 11px;
  line-height: 1.0;
}
