/* {$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;
}

.tiny-ec5e {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.wide-8739 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .wide-8739 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .wide-8739 {
        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 */
.label_db21 {
    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);
}

.carousel_2862 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .carousel_2862 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .fixed-3f17 {
        grid-column: 1;
    }
    
    .avatar_fluid_7cae {
        grid-column: 2;
    }
    
    .active_ab67 {
        grid-column: 3;
    }
}

.fixed-3f17 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.fixed-3f17:hover img {
    transform: scale(1.05);
}

/* Navigation */
.tertiary_801b {
    display: none;
}

@media (min-width: 1024px) {
    .tertiary_801b {
        display: block;
    }
}

/* Grouped Navigation */
.copper_9647 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.orange_7029 {
    position: relative;
}

.iron_f8b0 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.orange_7029 .focus-a95c {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.focus-a95c {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.notification_f9ef {
    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;
}

.notification_f9ef:hover,
.notification_f9ef.fn-active-d1e4 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.column-031e {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .column-031e {
        display: flex;
    }
}

/* Mobile Register Button */
.avatar_fluid_7cae {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .avatar_fluid_7cae {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.tag-out-776c {
    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;
}

.tag-out-776c::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 */
.active_ab67 {
    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) {
    .active_ab67 {
        display: none;
    }
}

.active_ab67 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.active_ab67.fn-active-d1e4 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.active_ab67.fn-active-d1e4 span:nth-child(2) {
    opacity: 0;
}

.active_ab67.fn-active-d1e4 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.current_d294 {
    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;
}

.current_d294.fn-active-d1e4 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.modal-old-0584 {
    overflow: hidden;
}

.box-first-ebc1 {
    list-style: none;
    padding: 0.75rem 0;
}

.surface-a5c2 {
    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;
}

.surface-a5c2:hover,
.surface-a5c2.fn-active-d1e4 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.surface-a5c2.table-easy-9386 {
    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;
}

.surface-a5c2.table-easy-9386::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 */
.primary_c3e5 {
    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;
}

.focus_east_2575 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.focus_east_2575:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.overlay-7ea6 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.overlay-7ea6:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.media_gold_2d10 {
    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;
}

.media_gold_2d10:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.dynamic-2ce5 {
    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;
}

.tiny-debc {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.tiny-debc:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.pagination_2f06 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.pagination_2f06:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.focus_tall_7039 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.focus_tall_7039:hover {
    background: linear-gradient(135deg, var(--info-color), var(--accent-color));
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.4);
}

.input_complex_8367 {
    font-size: 1em;
    font-weight: 700;
}

.focus_wood_e9ff {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.info_68f8 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.info_68f8::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;
}

.gallery_9cc0 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .gallery_9cc0 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.highlight_fluid_e95b {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.simple-4ab8 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.fresh-4616 {
    margin-bottom: 2rem;
}

.container-9aa4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .container-9aa4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.frame-ff81 {
    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);
}

.banner_2c0a {
    font-size: 1.5rem;
}

.picture-under-0fb5 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.wide_cd50 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.texture_326a {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.texture_326a:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.photo_easy_88ef {
    text-align: center;
    margin-bottom: 3rem;
}

.modal-large-e7f1 {
    margin-bottom: 1rem;
}

.title_dim_47f6 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.card-complex-ae48 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .card-complex-ae48 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .card-complex-ae48.liquid-9942 {
        direction: rtl;
    }
    
    .card-complex-ae48.liquid-9942 > * {
        direction: ltr;
    }
}

.medium_5cda {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.medium_5cda:first-child {
    margin-top: 0;
}

.smooth-d755 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.info_3cbc {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.info_3cbc:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.lite-289d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .lite-289d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.status-1574 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.glass-793f {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.header_e316 {
    list-style: none;
}

.header_e316 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header_e316 li:last-child {
    border-bottom: none;
}

/* Games Features */
.heading_west_c9b4 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.tabs_3abc {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.up_28c1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.footer-black-fe69 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.slider_6f99 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.feature-outer-dfd5 {
    margin: 2rem 0;
}

.border_easy_d4df {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.motion_cd71 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.under-79c2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.tabs_3e0a {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.pink_bc59 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pink_bc59 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mini-778a {
    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);
}

.mini-778a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.description-fast-d01a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.complex_c149 {
    font-size: 1.5rem;
}

.tabs-ea1d {
    color: var(--accent-color);
    margin: 0;
}

.modal-5215 {
    list-style: none;
}

.modal-5215 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.modal-5215 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.first_9f02 {
    margin: 2rem 0;
}

.wrapper_dd9b {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.panel-fa35 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .panel-fa35 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.title_1b5f {
    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);
}

.narrow_5ba0 {
    font-size: 1.25rem;
}

.modal-5560 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.texture_f322,
.next_e25d {
    text-align: center;
    margin: 2rem 0;
}

.picture_bright_2069,
.border_9004 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.video-dynamic-9e7e {
    margin: 2rem 0;
    text-align: center;
}

.white_2d0c {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.white_2d0c::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;
}

.bottom-3989 {
    position: relative;
    z-index: 1;
}

.overlay_01d4 {
    margin-bottom: 1rem;
}

.left-9222 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.chip-cool-2648 {
    margin-bottom: 3rem;
}

.sort_iron_e7c4 {
    margin-top: 3rem;
}

.background-orange-e9ad {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .background-orange-e9ad {
        grid-template-columns: repeat(4, 1fr);
    }
}

.background-orange-e9ad .frame-ff81 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.motion_bd43 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.mask_upper_14c2 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.alert-clean-a3be {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.row_hovered_bd53 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .row_hovered_bd53 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .row_hovered_bd53 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.element-1396 {
    margin-bottom: 1rem;
}

.popup-1edb img {
    margin-bottom: 1rem;
}

.surface-79bf {
    color: var(--text-gray);
    line-height: 1.6;
}

.container-8fcd {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.icon_upper_557e {
    list-style: none;
}

.icon_upper_557e li {
    margin-bottom: 0.5rem;
}

.icon_upper_557e a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.icon_upper_557e a:hover {
    color: var(--accent-color);
}

.sidebar-right-1cd8 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.fresh_4827 {
    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);
}

.fresh_4827:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.easy-1dd3 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.easy-1dd3 p {
    margin-bottom: 0.25rem;
}

.detail_f765 {
    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) {
    .detail_f765 {
        flex-direction: row;
    }
}

.grid_cool_33ed {
    text-align: center;
}

@media (min-width: 768px) {
    .grid_cool_33ed {
        text-align: left;
    }
}

.grid_cool_33ed p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.video_fec0 {
    font-size: 0.75rem !important;
}

.main_5f7a {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.outline-soft-b871 {
    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);
    }
}

.brown-8b25 {
    animation: fadeInUp 0.6s ease-out;
}

.gallery_up_8d3a {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.hero_wide_5863 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hero_wide_5863 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.bronze-eebc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .bronze-eebc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.mask-a755 {
    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);
}

.mask-a755 .up_28c1 {
    font-size: 1.25rem;
}

.mask-a755 .medium_5530 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.heading-prev-6d91 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .heading-prev-6d91 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.item_in_5e84 {
    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);
}

.item_in_5e84:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.grid-prev-210f {
    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_81f1 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.old_c196 {
    color: var(--text-gray);
    line-height: 1.6;
}

.box-hot-1baa {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.active_77ef {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.active_77ef .footer-black-fe69 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.active_77ef .slider_6f99 {
    color: var(--text-gray);
    line-height: 1.6;
}

.dropdown-blue-0c60 {
    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);
}

.list_61a2 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.list_61a2 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.list_61a2 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.wide_6f3a {
    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);
}

.hero-easy-6e7f {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tertiary-2db6 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tertiary-2db6 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.tertiary-2db6 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);
}

.tertiary-2db6 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.tertiary-2db6 input::placeholder {
    color: var(--text-muted);
}

.link_3b6d {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.widget-2b69 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.widget-2b69 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.south_3ae9 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.south_3ae9:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.panel-fa35 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .panel-fa35 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.title_1b5f {
    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);
}

.title_1b5f .narrow_5ba0 {
    font-size: 1.25rem;
}

.title_1b5f .modal-5560 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.badge_current_8972 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.surface-93b3 {
    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);
}

.surface-93b3 .up_28c1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.surface-93b3 .footer-black-fe69 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.surface-93b3 .slider_6f99 {
    color: var(--text-gray);
    line-height: 1.6;
}

.panel-current-78b2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.search-black-96e7 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.search-black-96e7 .static-699e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.search-black-96e7 .aside-hot-f98d {
    color: var(--text-gray);
    line-height: 1.6;
}

.cold-8cb9 {
    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);
}

.dynamic-0b79 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .dynamic-0b79 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.column_iron_41bd {
    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);
}

.column_iron_41bd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gradient_6289 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.right_df36 {
    flex: 1;
}

.hard-4b1a {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.red-79ba {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.complex_ed69 {
    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);
}

.complex_ed69:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.grid_759d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .grid_759d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cool_fba0 {
    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);
}

.cool_fba0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.border_b60b {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-prev-1bbd {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.badge_0396 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.module-f591 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.thick_2612 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.border-motion-200c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.cool-8df8 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.cool-8df8 .tall-04eb {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.cool-8df8 .aside_last_2abc {
    color: var(--text-gray);
    line-height: 1.6;
}

.dark_efc4 {
    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);
}

.mask_in_609c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.easy_cbd2 {
    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);
}

.easy_cbd2 .up_28c1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.easy_cbd2 .footer-black-fe69 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.easy_cbd2 .slider_6f99 {
    color: var(--text-gray);
    line-height: 1.6;
}

.pressed-f792 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pressed-f792 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.link-silver-0a1c {
    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);
}

.link-silver-0a1c:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.orange_6595 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .orange_6595 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.block_fixed_0e60 {
    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);
}

.block_fixed_0e60:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tooltip-upper-7bca {
    font-size: 2rem;
    flex-shrink: 0;
}

.fast-43ad {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.motion_cd71 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.element-baaa {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.bronze-21b6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pagination_a9ce {
    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);
}

.pagination_a9ce:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.content-3aec {
    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);
}

.fluid_35a4 {
    flex: 1;
}

.east_aaed {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.info_yellow_1984 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.summary_light_b37b {
    color: var(--text-gray);
    line-height: 1.6;
}

.frame_9d2e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.message-fffb {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.message-fffb .static-699e {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.message-fffb .aside-hot-f98d {
    color: var(--text-gray);
    line-height: 1.6;
}

.next_e25d {
    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);
}

.form_easy_b40f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .form_easy_b40f {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.grid-pro-c440 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .grid-pro-c440 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.title_wide_8cd4 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.title_wide_8cd4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.breadcrumb_c7b6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.active-17b1 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.chip_e4a3 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.overlay_b7eb {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.background-first-47e3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gradient-5b7e {
    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);
}

.table-prev-7780 {
    font-size: 2rem;
    flex-shrink: 0;
}

.dropdown-small-54ef {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.motion-c4a8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.mask_in_609c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.easy_cbd2 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.easy_cbd2 .footer-black-fe69 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.easy_cbd2 .slider_6f99 {
    color: var(--text-gray);
    line-height: 1.6;
}

.accent_d217 {
    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);
}

.widget_red_9840 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .widget_red_9840 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .widget_red_9840 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.detail-685d {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.detail-685d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.complex_6649 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.advanced-4fb7 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.hover-d7f8 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.white-c189 {
    padding: 1.5rem;
}

.wrapper-plasma-9ff9 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.thumbnail_south_b0e2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.thumbnail_south_b0e2 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;
}

.thumbnail_south_b0e2 li:last-child {
    border-bottom: none;
}

.thumbnail_south_b0e2 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.shade_5e99 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shade_5e99 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wrapper_stale_ae15 {
    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);
}

.wrapper_stale_ae15:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.image-7293 {
    font-size: 2rem;
    flex-shrink: 0;
}

.new_4de5 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.modal-orange-54b2 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.mask_in_4123 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.active_b48f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.label_a2b4 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.hover-6c57 {
    font-size: 2rem;
    flex-shrink: 0;
}

.gradient_5894 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.under-4cc3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.notice-7eda {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.focus-b590 {
    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);
}

.photo-6022 {
    text-align: center;
}

.inner-f260 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.layout-orange-fd58 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.advanced_9c73 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sort_ebbd {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.sort_ebbd .footer-black-fe69 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.sort_ebbd .slider_6f99 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tabs_af2e {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .tabs_af2e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tabs_af2e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.light-587f {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.light-587f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.article-hard-ddd7 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.picture_lower_4335 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.footer-black-fe69 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.block_hovered_2ec5 {
    padding: 1.5rem;
}

.slider_6f99 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.next_0f59 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.next_0f59 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;
}

.next_0f59 li:last-child {
    border-bottom: none;
}

.next_0f59 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.badge-aed3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.paper-17b9 {
    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);
}

.paper-17b9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.text-cool-f08e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.notice-becd {
    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);
}

.grid-prev-210f {
    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_81f1 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.old_c196 {
    color: var(--text-gray);
    line-height: 1.6;
}

.liquid-0700 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.progress-5f5a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.article-advanced-6a45 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.shadow_c34c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.fixed_6909 {
    display: flex;
    gap: 1rem;
}

.fixed_6909 .module_west_83f8 {
    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;
}

.video_last_a976 {
    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);
}

.thick_5fc0 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.shadow_tall_a290 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shadow_tall_a290 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.shadow_tall_a290 li:last-child {
    border-bottom: none;
}

.shadow_tall_a290 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.item_iron_9137 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .item_iron_9137 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .item_iron_9137 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.badge_8dee {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.badge_8dee:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.west_a2b6 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.slow_928e {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.tall-04eb {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.card_4fa6 {
    font-size: 1rem;
}

.shade-86e5 {
    padding: 1.5rem;
}

.aside_last_2abc {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.first_c05c {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.first_c05c .photo-6022 {
    text-align: center;
}

.first_c05c .layout-orange-fd58 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.first_c05c .element_brown_85e4 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.thumbnail_dynamic_0cba {
    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);
}

.thumbnail_dynamic_0cba:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.shadow-plasma-88d7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shadow-plasma-88d7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.text_solid_24be {
    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);
}

.text_solid_24be:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.fixed-66f7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.backdrop-focused-287f {
    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);
}

.wood-3fd1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.media-11fb {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.chip-0ccb {
    color: var(--text-gray);
    line-height: 1.6;
}

.feature_af70 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.gradient_dce3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.lite_2f12 {
    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);
}

.simple_05df {
    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;
}

.simple_05df.tertiary_soft_7b80 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.simple_05df.medium-7bc0 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.simple_05df.photo_9af1 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.simple_05df.preview_54e6 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.simple_05df.current-2eb1 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.grid_0c8f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.basic-6d8d {
    color: var(--text-gray);
    line-height: 1.6;
}

.element_f641 {
    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);
}

.primary_a0bb {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.panel-current-78b2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.panel-current-78b2 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;
}

.panel-current-78b2 li:last-child {
    border-bottom: none;
}

.panel-current-78b2 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.heading_6ab3 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .heading_6ab3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .heading_6ab3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dirty_501e {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.dirty_501e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.dirty_501e.avatar-center-3d25 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .dirty_501e.avatar-center-3d25 {
        grid-column: span 3;
    }
}

.menu_3e54 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.dirty_501e.avatar-center-3d25 .menu_3e54 {
    background: rgba(6, 182, 212, 0.1);
}

.form_purple_6df2 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.stone_3903 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.dirty_501e.avatar-center-3d25 .stone_3903 {
    color: var(--info-color);
}

.item_small_657b {
    padding: 1.5rem;
    text-align: center;
}

.center_fcfe {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.dirty_501e.avatar-center-3d25 .center_fcfe {
    color: var(--info-color);
}

.paragraph_north_5ba2 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.paper-c963 {
    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 */
.table-15a0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .table-15a0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.widget_white_18e4 {
    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);
}

.widget_white_18e4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.caption-dirty-9a98 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.surface-93b3 {
    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);
}

.narrow_5ba0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.backdrop-brown-355b {
    flex: 1;
}

.wrapper_dd9b {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.white_880b {
    color: var(--text-gray);
    line-height: 1.6;
}

.photo-079a {
    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);
}

.caption-7ff9 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.button_fresh_bead {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.outline-soft-b871 {
    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);
}

.gas-a772 {
  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);
}

.gas-a772 .photo-6022 {
    text-align: center;
}

.gas-a772 .inner-f260 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.gas-a772 .layout-orange-fd58 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.border-action-a081 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.status_5874 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.article-414c {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.accent_hovered_a2e9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.preview-e034 {
    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);
}

.tertiary_40ff {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.south_b505 {
    color: var(--text-gray);
    line-height: 1.6;
}

.last-360c {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .last-360c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .last-360c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.banner-old-00f1 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.banner-old-00f1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.avatar-smooth-30cc {
    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);
}

.sort-0433 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.layout-lower-2261 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.container-176c {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.container-176c.gallery-gas-a4a2 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.container-176c.form-5647 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.container-176c.tiny-3f48 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.smooth_3150 {
    padding: 1.5rem;
    text-align: center;
}

.description-iron-8135 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.main_bronze_814b {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.main_bronze_814b .glass_953a {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.container_01a5 {
    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);
}

.container_01a5:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.grid-blue-ba20 {
  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);
}

.accent_99e5 {
    text-align: center;
}

.accent_99e5 .inner-f260 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.accent_99e5 .layout-orange-fd58 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.complex_735f { text-align: center; }
.last_a7a3 { text-align: left; }
.block_d7d0 { text-align: right; }

.footer_lite_9623 { margin-bottom: 0; }
.input_top_dcd4 { margin-bottom: 0.5rem; }
.title_9a46 { margin-bottom: 1rem; }
.hidden-warm-0ae4 { margin-bottom: 1.5rem; }
.modal_53ab { margin-bottom: 2rem; }

.input-brown-de70 { margin-top: 0; }
.medium-3697 { margin-top: 0.5rem; }
.notice_easy_444e { margin-top: 1rem; }
.surface-d134 { margin-top: 1.5rem; }
.new_6ba7 { margin-top: 2rem; }

.fn-hidden-d1e4 { display: none; }
.fn-visible-d1e4 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .info_68f8 {
        padding: 6rem 0 3rem;
    }
    
    .gallery_9cc0 {
        text-align: center;
    }
    
    .card-complex-ae48 {
        text-align: center;
    }
    
    .container-9aa4 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .label_db21,
    .current_d294,
    .white_2d0c,
    .alert-clean-a3be {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .info_68f8 {
        background: none;
    }
}

/* Providers Section */
.block_bright_88f6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.slider-2135 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .slider-2135 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .slider-2135 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.progress_pressed_6e7f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.progress_pressed_6e7f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.slider-lower-5af3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.component-fixed-11a1 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.rough-959d {
    list-style: none;
    padding: 0;
}

.rough-959d li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.rough-959d li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.box_small_3682 {
    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);
}

.box_small_3682 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.hovered-779b {
    padding: var(--section-padding);
}

.carousel_8da3 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .carousel_8da3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.accent-motion-41af {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.accent-motion-41af:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.row-copper-210e {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.image-plasma-b521 {
    display: flex;
    flex-direction: column;
}

.gallery-tall-0dd2 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.bright-5179 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.wrapper_light_e90a {
    color: var(--accent-color);
}

.heading_short_d325 {
    font-size: 1.25rem;
}

.icon_a979 {
    margin-bottom: 1rem;
}

.icon_a979 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.short-5ac5 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.center_939f {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.photo-6022 {
    text-align: center;
}

.inner-f260 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.layout-orange-fd58 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.main_full_8c2f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.detail-086d {
    margin: 2rem 0;
}

.label-c606 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.label-c606 .up_28c1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.search-a082 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.iron_f16a {
    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;
}

.iron_f16a:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.mask-9eb1 {
    font-size: 2rem;
}

.accent-3a1b {
    display: flex;
    flex-direction: column;
}

.breadcrumb-outer-84cb {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.alert_b56e {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.advanced-c59b {
    padding: var(--section-padding);
}

.message-9150 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .message-9150 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .message-9150 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.media_clean_4589 {
    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);
}

.media_clean_4589:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.media_clean_4589 .inner-f260 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.media_clean_4589 .layout-orange-fd58 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.media_clean_4589 .summary_53fa {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.background_dirty_7e8a {
    margin-top: 4rem;
}

.wrapper_1bf4 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.icon-north-bdfc {
    overflow-x: auto;
}

.small-ea8e {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.small-ea8e thead {
    background: var(--accent-color);
}

.small-ea8e th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.small-ea8e td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.small-ea8e tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.small-ea8e tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.picture_top_4b3a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hero-dirty-25fd {
    max-width: 900px;
    margin: 0 auto;
}

.input-84d6 {
    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);
}

.input-84d6:hover {
    border-color: var(--accent-color);
}

.hard-5aba {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.hard-5aba h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.backdrop_3cd8 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.input-84d6.fn-active-d1e4 .backdrop_3cd8 {
    transform: rotate(45deg);
}

.silver_282c {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.input-84d6.fn-active-d1e4 .silver_282c {
    max-height: 1000px;
}

.silver_282c p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.component-b632 {
    padding: var(--section-padding);
}

.list_61a2 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.menu_08e4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.bright_62af {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .bright_62af {
        grid-template-columns: repeat(2, 1fr);
    }
}

.disabled-gas-4f38 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.motion-3e58 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.gradient_right_d333 {
    font-size: 2rem;
}

.content_63db {
    color: var(--text-white);
    margin: 0;
}

.popup_3c25 {
    list-style: none;
    padding: 0;
}

.popup_3c25 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.popup_3c25 li:last-child {
    border-bottom: none;
}

.main-e3ee {
    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);
}

.main-e3ee p {
    color: var(--success-color);
    margin: 0;
}

.frame-cold-9994 {
    margin-top: 3rem;
}

.thick_5fc0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.pagination_mini_6e90 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .pagination_mini_6e90 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.new-d298 {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.tooltip-3dda {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.new-d298 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.breadcrumb-4ecb {
    padding: var(--section-padding);
}

.silver-ab66 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .silver-ab66 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.in-4736 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.in-4736:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.preview_focused_959d {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.content-bcb2 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.logo-8a05 {
    flex: 1;
}

.hidden-3a08 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.heading-7be2 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.shade_b628 {
    color: var(--text-gray);
    line-height: 1.6;
}

.carousel-df57 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel-df57:last-child {
    border-bottom: none;
}

/* Comparison Section */
.box_iron_7deb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.detail_rough_2dd7 {
    padding: var(--section-padding);
}

.avatar_3a01 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.logo-e64d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .logo-e64d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.over-b545 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.carousel_black_ca0a, .out_43af, .hovered-2d60 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.hovered-2d60 {
    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 */
.frame-5efb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.fluid_d82d {
    margin: 2rem 0;
}

.chip-289f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gas-1d0b {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer_e037 {
    list-style: none;
    padding: 0;
}

.footer_e037 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;
}

.footer_e037 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.footer_e037 li:last-child {
    border-bottom: none;
}

.component-ec3b {
    text-align: center;
    margin-top: 2rem;
}

.chip-paper-0cff {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.secondary-7d79 {
    padding: var(--section-padding);
}

.content-0e08 {
    margin: 2rem 0;
}

.column_474b {
    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) {
    .column_474b {
        flex-direction: column;
        align-items: flex-start;
    }
}

.column_474b:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.background_6949 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.disabled_iron_036d {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.card_full_4f93 {
    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;
}

.row-4189 {
    flex: 1;
}

.motion_63ca {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.pattern-warm-636b {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.message_00b9 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.text_5efd {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .text_5efd {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.info-south-2836 {
    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);
}

.info-south-2836:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.info-south-2836 .inner-f260 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.info-south-2836 .layout-orange-fd58 {
    color: var(--text-gray);
    font-size: 1rem;
}

.component_first_d075 {
    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);
}

.article_64b4 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.article_64b4 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.notice_red_f5b4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .notice_red_f5b4 {
        grid-template-columns: 1fr 1fr;
    }
}

.summary-under-6e1f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.grid-cf3b {
    margin-bottom: 1.5rem;
}

.grid-cf3b label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.grid-cf3b input,
.grid-cf3b 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;
}

.grid-cf3b input:focus,
.grid-cf3b select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.sidebar-ac45 {
    width: 100%;
    margin-top: 1rem;
}

.main-bronze-c04d {
    display: flex;
    align-items: center;
}

.card-54b6 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.notification_tall_3dc5 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.first-069c {
    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;
}

.nav-hard-4bdb {
    color: var(--text-gray);
}

.container-889b {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.breadcrumb_easy_24e0 {
    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);
}

.breadcrumb_easy_24e0 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.photo_ed99 {
    margin-top: 3rem;
}

.yellow_0885 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.table-silver-1838 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.badge_stone_8c43 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.sidebar_011a {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar_011a:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.thumbnail-8c9c {
    padding: var(--section-padding);
}

.in_fa40 {
    margin: 2rem 0;
}

.gold-4294 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.pagination_07a1 {
    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;
}

.pagination_07a1:hover, .pagination_07a1.fn-active-d1e4 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.text-4742 {
    display: none;
}

.text-4742.fn-active-d1e4 {
    display: block;
}

.detail-a998 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outer-f5fd {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.module-pink-6821 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.module-pink-6821 ul {
    list-style: none;
    padding: 0;
}

.module-pink-6821 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.module-pink-6821 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.alert-d03e {
    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 */
.search_tall_be7f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.carousel_4c7e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.input-b468 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.thumbnail_eeaa {
    color: var(--accent-color);
    margin: 0;
}

.huge_3326 {
    display: flex;
    gap: 1.5rem;
}

.wrapper-bcea {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.pattern_dynamic_8a21 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.down_b882 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.down_b882.module-b968 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.down_b882.over_d0f8 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.down_b882.yellow-fd50 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.menu_2830 {
    margin-top: 2rem;
}

.backdrop_pink_53e7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.alert_stale_bf61 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .alert_stale_bf61 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.purple-3bf1 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.nav_add8 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.steel_05a9 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.short_32b6 {
    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 */
.avatar_597e {
    padding: var(--section-padding);
}

.notice_1f53 {
    margin: 2rem 0;
}

.under_2af5 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.inner-f5bd {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.search-5846 {
    list-style: none;
    padding: 0;
}

.search-5846 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;
}

.search-5846 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.search-5846 li:last-child {
    border-bottom: none;
}

.hover_e4e4 {
    margin: 2rem 0;
}

.button-right-6a8d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.stone-22b1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .stone-22b1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.breadcrumb_3970 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.breadcrumb_slow_a547 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.highlight-b813 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.link-ca78 {
    margin-top: 2rem;
}

.hard-4b1a {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.media-bronze-80b8 {
    list-style: none;
    padding: 0;
}

.picture_small_d71e {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.picture_small_d71e a {
    color: var(--accent-color);
    text-decoration: none;
}

.picture_small_d71e a:hover {
    text-decoration: underline;
}

.menu_6707 {
    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 */
.secondary_35ed {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tabs-out-1533 {
    margin: 2rem 0;
}

.solid-4278 {
    margin-bottom: 3rem;
}

.solid-4278 .gas-1d0b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.photo-black-090d {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.middle_29fe {
    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);
}

.middle_29fe:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.west_a262 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .west_a262 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.solid_f78c {
    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 */
.panel-tiny-91be {
    padding: var(--section-padding);
}

.orange_0feb {
    margin: 2rem 0;
}

.title_full_c971 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.lower-89f2 {
    overflow-x: auto;
    margin: 2rem 0;
}

.paragraph_0741 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.grid_85cd {
    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;
}

.fixed_2bb6 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.slider-9047 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .slider-9047 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mask_mini_bf38 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.mask_mini_bf38 .up_28c1 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.mask_mini_bf38 .footer-black-fe69 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.row_5deb {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.basic_bc3e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.item_2b14 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .item_2b14 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.carousel_gas_7be5 {
    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;
}

.carousel_gas_7be5:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.bottom-9db0 {
    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);
}

.widget-glass-03d5 {
    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;
}

.sidebar-48ed {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.link-dynamic-8383 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.footer-right-d022 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.thumbnail-current-6b9c {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.column_gas_40a0 {
    color: var(--text-white);
    font-weight: 600;
}

.motion-fd2d {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.search-f3ea {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.search-f3ea .module_west_83f8 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.breadcrumb_8659 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .breadcrumb_8659 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.white-d7e2 {
    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);
}

.white-d7e2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.white-d7e2 .inner-f260 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.white-d7e2 .layout-orange-fd58 {
    color: var(--text-gray);
    font-size: 1rem;
}

.heading_c022 {
    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);
}

.banner_a954 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.banner_a954 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.background-first-47e3 {
    margin: 2rem 0;
}

.gradient-5b7e {
    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);
}

.gradient-5b7e:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.table-prev-7780 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.module-bright-6212 {
    flex: 1;
}

.dropdown-small-54ef {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.motion-c4a8 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.mask_in_609c {
    margin: 2rem 0;
}

.easy_cbd2 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.easy_cbd2 .footer-black-fe69 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.easy_cbd2 .slider_6f99 {
    color: var(--text-gray);
    margin: 0;
}

.accent_d217 {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.accent_d217 .picture_bright_2069 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.row_5deb {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.content-3aec {
    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;
}

.fluid_35a4 {
    flex: 1;
}

.info_yellow_1984 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.summary_light_b37b {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.grid-prev-210f {
    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;
}

.orange_2198 {
    flex: 1;
}

.primary_81f1 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.old_c196 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.article-advanced-6a45 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.shadow_c34c {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.fixed_6909 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.fixed_6909 .module_west_83f8 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.video_last_a976 {
    margin-top: 2rem;
}

.video_last_a976 .thick_5fc0 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.dim-f8fe {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.focus-b590 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .focus-b590 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.focus-b590 .photo-6022 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.advanced_9c73 {
    margin: 2rem 0;
}

.sort_ebbd {
    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 */
.preview-blue-55e1 {
    padding: var(--section-padding);
}

.block_hovered_2ec5 {
    margin-top: 1rem;
}

.next_0f59 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.next_0f59 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.next_0f59 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.primary_plasma_6d60 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hot-5134 {
    margin: 2rem 0;
}

.shadow_out_ba12 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.hovered-5882 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.copper_4ae6 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.caption-outer-fb33 {
    margin: 2rem 0;
}

.info_plasma_c74a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.info_plasma_c74a .gas-1d0b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.pattern_iron_2d5f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .pattern_iron_2d5f {
        grid-template-columns: repeat(2, 1fr);
    }
}

.label-3a72 {
    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);
}

.dynamic_528a {
    color: var(--text-white);
    font-weight: 600;
}

.accordion_cdfc {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.text-5755 {
    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);
}

.text-5755 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.hidden-3bc9 {
    padding: var(--section-padding);
}

.image_f01e {
    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;
}

.image_f01e:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.chip_rough_a7d2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chip_rough_a7d2 .tooltip-3dda {
    font-size: 2rem;
    flex-shrink: 0;
}

.chip_rough_a7d2 .detail_middle_f9df {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.dropdown-right-0f9b {
    flex: 1;
}

.next_c1d2 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hero-2186 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-2186 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.hero-2186 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.item-c19a {
    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);
}

.item-c19a p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.item-c19a strong {
    color: var(--warning-color);
}

/* Slots Section */
.pattern_ab29 {
    padding: var(--section-padding);
}

.thick_2612 {
    margin: 2rem 0;
}

/* Table Games Section */
.grid-c914 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.border-motion-200c {
    margin: 2rem 0;
}

.cool-8df8 {
    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);
}

.cool-8df8:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.cool-8df8 .tall-04eb {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.cool-8df8 .aside_last_2abc {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.dark_efc4 {
    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);
}

.dark_efc4 .picture_bright_2069 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.heading-5a9b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.gallery-977f {
    margin: 2rem 0;
}

.modal-a146 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tooltip_tiny_cb49 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.notification-9b59 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.layout-1599 {
    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);
}

.layout-1599:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.layout-1599.fn-active-d1e4 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.bottom-af26 {
    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);
}

.title-18b2 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.title-18b2 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.item-hard-1885 {
    padding: var(--section-padding);
}

.container-fluid-7e22 {
    margin: 2rem 0;
}

.avatar-9413 {
    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);
}

.avatar-9413:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .avatar-9413 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.table-dim-488d {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.hard-1c47 {
    flex: 1;
}

.surface-59ce {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.last-ac18 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.solid_981e {
    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;
}

.blue-655e {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.sidebar_fixed_66e9 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.liquid_f8a9 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.thumbnail-1bc5 {
    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;
}

.thumbnail-1bc5:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.easy-d5b7 {
    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);
}

.focused-558e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.focused-558e strong {
    color: var(--accent-color);
}

/* New Games Section */
.content_fixed_165d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.footer_bottom_5ed9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .footer_bottom_5ed9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer_bottom_5ed9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dropdown_soft_6e94 {
    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;
}

.dropdown_soft_6e94:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.background_c2b3 {
    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;
}

.heading_12f8 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.bottom-27f5 {
    font-size: 2rem;
}

.fast-0360 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.aside-wood-40a9 {
    flex: 1;
}

.east-56c2 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.pink-a9a0 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.label_outer_8097 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.paragraph_4ae0 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.description-last-8f65 {
    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;
}

.smooth_2d1f {
    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;
}

.smooth_2d1f:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.slider-cool-eb1f {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.column_7cd5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.notification-bronze-596e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .notification-bronze-596e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.column_fresh_430e {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--secondary-bg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blue_8ea3 {
    color: var(--text-white);
    font-weight: 600;
}

.caption-6419 {
    color: var(--accent-color);
    font-weight: 600;
}

.silver-a6fa {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.silver-a6fa strong {
    color: var(--accent-color);
}

/* Security Section */
.sidebar_666d {
    padding: var(--section-padding);
}

/* Benefits Section */
.static-946c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.plasma_4ffc {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.hover-thick-73de {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.table_cec9 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.main_c18e {
    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) {
    .main_c18e {
        flex-direction: column;
        gap: 1rem;
    }
}

.main_c18e:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.main_c18e .grid-prev-210f {
    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;
}

.main_c18e .orange_2198 {
    flex: 1;
}

.main_c18e .primary_81f1 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.main_c18e .old_c196 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.tooltip-mini-dd41 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tooltip-mini-dd41 .wrapper_dd9b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tooltip-mini-dd41 .badge_current_8972 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tooltip-mini-dd41 .badge_current_8972 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.tooltip-mini-dd41 .badge_current_8972 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.shade_stale_b01e {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.backdrop_2960 {
    padding: var(--section-padding);
}

.tall_91a2 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .tall_91a2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.narrow_4358 {
    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);
}

.narrow_4358:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.narrow_4358 .clean_3e9d {
    font-size: 2rem;
    flex-shrink: 0;
}

.narrow_4358 .chip_4e1f {
    flex: 1;
}

.narrow_4358 .static-699e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.narrow_4358 .widget_bottom_603b {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.secondary-fbd2 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.secondary-fbd2 .form-2199 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.secondary-fbd2 .status-yellow-ee32 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.secondary-fbd2 .status-yellow-ee32 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);
}

.secondary-fbd2 .status-yellow-ee32 li:last-child {
    border-bottom: none;
}

.secondary-fbd2 .status-yellow-ee32 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;
}

.secondary-fbd2 .status-yellow-ee32 li strong {
    color: var(--text-white);
}

.mask_light_d646 {
    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);
}

.mask_light_d646 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.mask_light_d646 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.upper-e7ec {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.backdrop_narrow_cdc1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .backdrop_narrow_cdc1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-top-c114 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.form-top-c114:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.picture_3fc2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-slow-8b0e {
    font-size: 2rem;
}

.north_8ec8 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.complex_3f48 {
    flex: 1;
}

.info-fcbd {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-fcbd li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.info-fcbd li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.link_aa07 {
    margin-top: 3rem;
}

.under_2af5 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.inner-f5bd {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.search-5846 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-5846 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.search-5846 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.search-5846 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.north_6955 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.white_1f48 {
    margin: 2rem 0;
}

.label-87fa {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.label-87fa .gas-1d0b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.notification-right-f8ec {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .notification-right-f8ec {
        grid-template-columns: repeat(2, 1fr);
    }
}

.clean-96ed {
    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);
}

.clean-96ed:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.wood_41c9 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.clean_9d15 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.heading-9bc5 {
    padding: var(--section-padding);
}

.shade-active-0c29 {
    margin: 2rem 0;
}

.secondary_orange_0fd9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .secondary_orange_0fd9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .secondary_orange_0fd9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.alert-under-9a72 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.alert-under-9a72:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.tooltip-5f9f {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.shadow-c854 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.secondary-upper-27e2 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.secondary-upper-27e2.bronze_1887 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.secondary_full_3df5 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.dynamic-d1c1 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.content_glass_3311 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel-blue-7b8f {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.frame_up_1e9c {
    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);
}

.frame_up_1e9c p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.frame_up_1e9c strong {
    color: var(--accent-color);
}

/* Update Log Section */
.hot-2c81 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.focused-1b59 {
    margin: 2rem 0;
}

.module_orange_ee3c {
    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) {
    .module_orange_ee3c {
        flex-direction: column;
        gap: 1rem;
    }
}

.module_orange_ee3c:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.module_orange_ee3c::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);
}

.box_dark_2c99 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.summary_action_696b {
    flex: 1;
}

.photo_66e4 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.orange_6629 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.orange_6629 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.text_short_be06 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.aside-center-a18e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.focused_7147 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .focused_7147 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.disabled-active-ffe1 {
    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);
}

.gallery-bd56 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.yellow_83de {
    flex: 1;
}

.highlight_old_02a7 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.background_stale_13a6 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.avatar-606a {
    margin-top: 2rem;
    text-align: center;
}

.chip_32e1 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.chip_32e1 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.shadow-plasma-88d7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shadow-plasma-88d7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.text_solid_24be {
    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);
}

.text_solid_24be:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.text_solid_24be .image-7293 {
    font-size: 2rem;
    flex-shrink: 0;
}

.text_solid_24be .new_4de5 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.text_solid_24be .modal-orange-54b2 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.text_solid_24be .mask_in_4123 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.under-43e0 {
    padding: var(--section-padding);
}

.backdrop-focused-287f .box-9e97 {
    flex: 1;
}

/* Promo Calendar Section */
.red-5012 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.main-down-bbfe {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .main-down-bbfe {
        grid-template-columns: repeat(3, 1fr);
    }
}

.action-fb20 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.alert_red_28a2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.black-5321 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.photo-outer-00f2 {
    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);
}

.dim_8e14 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.outline-red-53a1 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.row_dark_ba4b {
    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);
}

.row_dark_ba4b p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.row_dark_ba4b strong {
    color: var(--accent-color);
}

/* Requirements Section */
.preview-hard-5671 {
    padding: var(--section-padding);
}

.narrow-b7c1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .narrow-b7c1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.large_bdab {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.in_93a0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.video_tall_8da1 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.video_tall_8da1 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.detail-lower-1501 {
    margin-top: 3rem;
}

.detail-lower-1501 .under_2af5 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.detail-lower-1501 .inner-f5bd {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.detail-lower-1501 .search-5846 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.detail-lower-1501 .search-5846 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.detail-lower-1501 .search-5846 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.detail-lower-1501 .search-5846 li strong {
    color: var(--warning-color);
}

.modal_easy_5bdc {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.modal_easy_5bdc strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.column_bright_7d7c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.main_fbdf {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .main_fbdf {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wrapper_huge_48ae {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wrapper_huge_48ae .gas-1d0b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.backdrop-south-cbb4 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chip-light-63fc {
    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);
}

.chip-light-63fc:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.header-f65b {
    font-size: 2rem;
    flex-shrink: 0;
}

.description_prev_af21 {
    flex: 1;
}

.primary-264e {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.icon-042a {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.wood_75fe {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.yellow_4078 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.main_ddde {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .main_ddde {
        grid-template-columns: repeat(4, 1fr);
    }
}

.black-fddf {
    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);
}

.black-fddf:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.breadcrumb-over-0ef7 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.message-selected-68b7 {
    color: var(--text-gray);
    font-size: 1rem;
}

.article_64b4 {
    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);
}

.purple-6ffc {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.purple-6ffc strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.wide-8739 { 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; }
.texture_326a, .info_3cbc { max-width:100%; height:auto; }

.primary_c3e5, .media_gold_2d10, .dynamic-2ce5 { white-space:normal; }

.gallery_9cc0,
.card-complex-ae48,
.table-15a0,
.shadow-plasma-88d7,
.mask_in_609c,
.last-360c {
  flex-wrap:wrap;
}

[class*="grid"],
.main_ddde,
.secondary_orange_0fd9,
.background-orange-e9ad {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.info_68f8 img,
.card-complex-ae48 img,
.wide_cd50 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.highlight_fluid_e95b, .simple-4ab8,
.modal-large-e7f1, .title_dim_47f6 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.icon-north-bdfc { width:100%; overflow-x:auto; }
.icon-north-bdfc table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.slider-2135 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .slider-2135 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.progress_pressed_6e7f {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.message-9150,
.slider_807d,
.card_2327,
.dark_97dd,
.text_5efd,
.main_ddde,
.secondary_orange_0fd9,
.background-orange-e9ad,
.grid-blue-ba20,
.container-fluid-7e22,
.slider-2135 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .message-9150,
  .slider_807d,
  .card_2327,
  .dark_97dd,
  .text_5efd,
  .main_ddde,
  .secondary_orange_0fd9,
  .background-orange-e9ad,
  .grid-blue-ba20,
  .container-fluid-7e22,
  .slider-2135 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.media_clean_4589,
.info-south-2836,
.black-fddf,
.frame-ff81,
.alert-under-9a72,
.accent_99e5,
.avatar-9413,
.progress_pressed_6e7f {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.nav_cold_9a02,
.up-c75a,
.filter-center-10c7 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.nav_cold_9a02 > *,
.up-c75a > *,
.filter-center-10c7 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 1d7f */
.phantom-card-v4 {
  padding: 0.4rem;
  font-size: 14px;
  line-height: 1.0;
}
