/* {$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;
}

.logo-hovered-68a6 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.plasma_1816 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .plasma_1816 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .plasma_1816 {
        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 */
.primary_top_f428 {
    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);
}

.paragraph_short_5b15 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .paragraph_short_5b15 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .grid_288f {
        grid-column: 1;
    }
    
    .tag-e7c1 {
        grid-column: 2;
    }
    
    .link-wood-7318 {
        grid-column: 3;
    }
}

.grid_288f img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.grid_288f:hover img {
    transform: scale(1.05);
}

/* Navigation */
.main_green_98f2 {
    display: none;
}

@media (min-width: 1024px) {
    .main_green_98f2 {
        display: block;
    }
}

/* Grouped Navigation */
.lower_145e {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.hot-b711 {
    position: relative;
}

.first_d0ed {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.hot-b711 .nav-bf5e {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.nav-bf5e {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.west-6c31 {
    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;
}

.west-6c31:hover,
.west-6c31.fn-active-ff31 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.caption-bronze-6da9 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .caption-bronze-6da9 {
        display: flex;
    }
}

/* Mobile Register Button */
.tag-e7c1 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .tag-e7c1 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.rough-34ec {
    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;
}

.rough-34ec::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 */
.link-wood-7318 {
    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) {
    .link-wood-7318 {
        display: none;
    }
}

.link-wood-7318 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.link-wood-7318.fn-active-ff31 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.link-wood-7318.fn-active-ff31 span:nth-child(2) {
    opacity: 0;
}

.link-wood-7318.fn-active-ff31 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.hidden_blue_7523 {
    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;
}

.hidden_blue_7523.fn-active-ff31 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.dim_c7ce {
    overflow: hidden;
}

.preview_under_abad {
    list-style: none;
    padding: 0.75rem 0;
}

.light-d6cb {
    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;
}

.light-d6cb:hover,
.light-d6cb.fn-active-ff31 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.light-d6cb.border_8598 {
    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;
}

.light-d6cb.border_8598::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 */
.tertiary_1e91 {
    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;
}

.chip-advanced-d4a2 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.chip-advanced-d4a2:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.border-top-8ded {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.border-top-8ded:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.advanced_1fc3 {
    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;
}

.advanced_1fc3:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.section_blue_36e5 {
    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;
}

.mask_b19c {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.mask_b19c:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.mask_86c1 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.mask_86c1:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.focus_aca1 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.focus_aca1: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);
}

.grid_blue_0fc6 {
    font-size: 1em;
    font-weight: 700;
}

.list_5092 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.banner-bbfc {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.banner-bbfc::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;
}

.item_down_201d {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .item_down_201d {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.picture_basic_b94b {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.motion-de2a {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.notice_543e {
    margin-bottom: 2rem;
}

.alert-yellow-40b0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .alert-yellow-40b0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.list-a323 {
    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);
}

.pattern-pressed-52e8 {
    font-size: 1.5rem;
}

.light-317a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.layout-5bd0 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.link_c3e7 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.link_c3e7:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.info-bottom-994e {
    text-align: center;
    margin-bottom: 3rem;
}

.frame-soft-22cb {
    margin-bottom: 1rem;
}

.green-b9e4 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.backdrop_5ceb {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .backdrop_5ceb {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .backdrop_5ceb.sort-c2c5 {
        direction: rtl;
    }
    
    .backdrop_5ceb.sort-c2c5 > * {
        direction: ltr;
    }
}

.pagination-cb73 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.pagination-cb73:first-child {
    margin-top: 0;
}

.box_fc29 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.slider_69d3 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.slider_69d3:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.orange-9f13 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .orange-9f13 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.focused-0274 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.secondary_narrow_90d3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.first-68ce {
    list-style: none;
}

.first-68ce li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.first-68ce li:last-child {
    border-bottom: none;
}

/* Games Features */
.label_2087 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.down_cbcf {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.down-3869 {
    font-size: 2rem;
    flex-shrink: 0;
}

.last-8960 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.disabled-warm-9c98 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.in-2fe7 {
    margin: 2rem 0;
}

.hot_aaa0 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.info-purple-52a9 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.iron_c431 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.shade_orange_4c4b {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.shade-wide-f532 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shade-wide-f532 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.slider_5c00 {
    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);
}

.slider_5c00:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.label_cold_a0ae {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.next-0f81 {
    font-size: 1.5rem;
}

.logo_5462 {
    color: var(--accent-color);
    margin: 0;
}

.bronze_58d1 {
    list-style: none;
}

.bronze_58d1 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.bronze_58d1 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.grid-237e {
    margin: 2rem 0;
}

.badge-0ca3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.nav-clean-d52a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .nav-clean-d52a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.top-e494 {
    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);
}

.out_10df {
    font-size: 1.25rem;
}

.full_c08a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.backdrop-pressed-d72b,
.article_8dd2 {
    text-align: center;
    margin: 2rem 0;
}

.left_ca95,
.icon_af2a {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.gradient-2e73 {
    margin: 2rem 0;
    text-align: center;
}

.hover_6392 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hover_6392::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;
}

.pagination_iron_6db4 {
    position: relative;
    z-index: 1;
}

.text-6f1c {
    margin-bottom: 1rem;
}

.rough_9943 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.inner_dfc7 {
    margin-bottom: 3rem;
}

.accent_motion_45fb {
    margin-top: 3rem;
}

.feature_5c3d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .feature_5c3d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature_5c3d .list-a323 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.under-85d0 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.plasma-d6ff {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.button_complex_f5e5 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.medium-e062 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .medium-e062 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .medium-e062 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.small-bc7a {
    margin-bottom: 1rem;
}

.message_93a3 img {
    margin-bottom: 1rem;
}

.current_fea4 {
    color: var(--text-gray);
    line-height: 1.6;
}

.gallery-gold-0053 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.active-copper-6c79 {
    list-style: none;
}

.active-copper-6c79 li {
    margin-bottom: 0.5rem;
}

.active-copper-6c79 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.active-copper-6c79 a:hover {
    color: var(--accent-color);
}

.easy_4688 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.notification-motion-c48b {
    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);
}

.notification-motion-c48b:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.pattern_outer_dd5c {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.pattern_outer_dd5c p {
    margin-bottom: 0.25rem;
}

.accent_e49e {
    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) {
    .accent_e49e {
        flex-direction: row;
    }
}

.steel-2a8f {
    text-align: center;
}

@media (min-width: 768px) {
    .steel-2a8f {
        text-align: left;
    }
}

.steel-2a8f p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.link-pink-9327 {
    font-size: 0.75rem !important;
}

.main_11e8 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.grid_edc2 {
    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);
    }
}

.disabled-new-3a41 {
    animation: fadeInUp 0.6s ease-out;
}

.tabs-e38c {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.top_2e34 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .top_2e34 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.pattern-stale-b226 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pattern-stale-b226 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.detail-d893 {
    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);
}

.detail-d893 .down-3869 {
    font-size: 1.25rem;
}

.detail-d893 .pro-ba90 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.search_smooth_69fe {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .search_smooth_69fe {
        grid-template-columns: repeat(3, 1fr);
    }
}

.copper_cf4b {
    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);
}

.copper_cf4b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.box-e7b2 {
    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);
}

.west-3385 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.bronze-e9a0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.disabled-in-ca60 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.surface_24db {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.surface_24db .last-8960 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.surface_24db .disabled-warm-9c98 {
    color: var(--text-gray);
    line-height: 1.6;
}

.dropdown_prev_0acc {
    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);
}

.label_cc1d {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.label_cc1d img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.label_cc1d img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.thick_6da6 {
    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);
}

.secondary-stone-eb2d {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.inner_f37d {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.inner_f37d label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.inner_f37d 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);
}

.inner_f37d input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.inner_f37d input::placeholder {
    color: var(--text-muted);
}

.header_rough_d22e {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.aside-inner-e84c {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.aside-inner-e84c input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.element-97d1 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.element-97d1:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.nav-clean-d52a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .nav-clean-d52a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.top-e494 {
    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);
}

.top-e494 .out_10df {
    font-size: 1.25rem;
}

.top-e494 .full_c08a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.smooth_b9b1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.up-b73c {
    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);
}

.up-b73c .down-3869 {
    font-size: 2rem;
    flex-shrink: 0;
}

.up-b73c .last-8960 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.up-b73c .disabled-warm-9c98 {
    color: var(--text-gray);
    line-height: 1.6;
}

.frame-inner-2041 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.preview-a9fb {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.preview-a9fb .info_ce13 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.preview-a9fb .heading_b07f {
    color: var(--text-gray);
    line-height: 1.6;
}

.liquid_4045 {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.accordion_hot_9366 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .accordion_hot_9366 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.large-6dcf {
    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);
}

.large-6dcf:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pro_3ffb {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.carousel-lower-199c {
    flex: 1;
}

.alert_0e5e {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.hovered_2242 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.glass-7703 {
    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);
}

.glass-7703:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.green-9ae5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .green-9ae5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.widget_glass_21f6 {
    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_glass_21f6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pagination-soft-7193 {
    font-size: 2rem;
    flex-shrink: 0;
}

.input_edcd {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.feature-cool-ddda {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.surface-action-d584 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.progress_16f9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tooltip_lite_3900 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.easy_69ae {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.easy_69ae .steel-4f36 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.easy_69ae .element_f6a3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.paragraph-steel-c2a5 {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.search-16f8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.frame-next-9231 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.frame-next-9231 .down-3869 {
    font-size: 2rem;
    flex-shrink: 0;
}

.frame-next-9231 .last-8960 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.frame-next-9231 .disabled-warm-9c98 {
    color: var(--text-gray);
    line-height: 1.6;
}

.logo_e45b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .logo_e45b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.large_355a {
    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);
}

.large_355a:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.logo_f139 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .logo_f139 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.carousel-4962 {
    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);
}

.carousel-4962:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.breadcrumb-bright-161a {
    font-size: 2rem;
    flex-shrink: 0;
}

.dynamic-59ad {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-purple-52a9 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.complex-f45b {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.over_3bf7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.accent-out-2335 {
    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);
}

.accent-out-2335:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.up-e3a5 {
    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);
}

.notice_6c76 {
    flex: 1;
}

.alert_orange_f9f3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.fluid_d2c6 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.badge-yellow-f3c7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.full_3e96 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pattern-basic-1abe {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pattern-basic-1abe .info_ce13 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.pattern-basic-1abe .heading_b07f {
    color: var(--text-gray);
    line-height: 1.6;
}

.article_8dd2 {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.caption_motion_37d9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .caption_motion_37d9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.breadcrumb_huge_e415 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .breadcrumb_huge_e415 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.notice-fb93 {
    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);
}

.notice-fb93:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.green-9ae5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.container_b219 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.list_0037 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.menu-bf8c {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.tag-2224 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.current-efe8 {
    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);
}

.in_15a9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.disabled-7050 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.new-4fe3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.search-16f8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.frame-next-9231 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.frame-next-9231 .last-8960 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.frame-next-9231 .disabled-warm-9c98 {
    color: var(--text-gray);
    line-height: 1.6;
}

.selected-affb {
    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);
}

.banner-last-575f {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .banner-last-575f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .banner-last-575f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.container_first_c4fd {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.container_first_c4fd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.focus-mini-9f3d {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.progress-9e96 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.middle-4356 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.main-white-4008 {
    padding: 1.5rem;
}

.sidebar_under_ec45 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.silver-b086 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.silver-b086 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;
}

.silver-b086 li:last-child {
    border-bottom: none;
}

.silver-b086 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.active-west-cce2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .active-west-cce2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.box_f4b6 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.box_f4b6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.slider-simple-943a {
    font-size: 2rem;
    flex-shrink: 0;
}

.table_80f3 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.silver-f8cc {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.green-6b4a {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.list_gold_dfac {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.middle-9ea7 {
    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);
}

.background-4d12 {
    font-size: 2rem;
    flex-shrink: 0;
}

.block_fluid_6d6f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.smooth-36be {
    color: var(--text-gray);
    line-height: 1.6;
}

.pattern-fixed-1e3e {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.preview-soft-b5fb {
    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);
}

.action-7453 {
    text-align: center;
}

.hover-8389 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.west-c879 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.banner-focused-5f5b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.menu_dynamic_58b6 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.menu_dynamic_58b6 .last-8960 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.menu_dynamic_58b6 .disabled-warm-9c98 {
    color: var(--text-gray);
    line-height: 1.6;
}

.column-blue-7574 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .column-blue-7574 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .column-blue-7574 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.widget-80c3 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.widget-80c3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.fresh_a1f9 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.hero_iron_8cc6 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.last-8960 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.modal_lower_22a2 {
    padding: 1.5rem;
}

.disabled-warm-9c98 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.current-c406 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.current-c406 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;
}

.current-c406 li:last-child {
    border-bottom: none;
}

.current-c406 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.nav-orange-ed36 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.filter-red-2c18 {
    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);
}

.filter-red-2c18:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.feature-a492 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tall_616f {
    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);
}

.box-e7b2 {
    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;
}

.west-3385 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.bronze-e9a0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.logo-medium-d117 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.action_483a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.bright_e725 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.input_a938 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.medium-662b {
    display: flex;
    gap: 1rem;
}

.medium-662b .cold_ad7a {
    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;
}

.feature_full_90bc {
    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);
}

.frame_large_b1e1 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.aside_bcb0 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aside_bcb0 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;
}

.aside_bcb0 li:last-child {
    border-bottom: none;
}

.aside_bcb0 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.disabled_ae86 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .disabled_ae86 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .disabled_ae86 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.panel-yellow-1f3a {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.panel-yellow-1f3a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.liquid-19e2 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.avatar_fluid_8da0 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.steel-4f36 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.summary_north_6565 {
    font-size: 1rem;
}

.description_df57 {
    padding: 1.5rem;
}

.element_f6a3 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.wrapper_tiny_0b64 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.wrapper_tiny_0b64 .action-7453 {
    text-align: center;
}

.wrapper_tiny_0b64 .west-c879 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.wrapper_tiny_0b64 .sort-c5dc {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.progress_fast_be77 {
    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);
}

.progress_fast_be77:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.aside-ead8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .aside-ead8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.notice-4881 {
    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);
}

.notice-4881:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.sidebar_62f0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hot-b28e {
    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);
}

.wide-d9c1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.picture_6db0 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.element-down-4826 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hovered_b262 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.current_9c87 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.form_warm_a40f {
    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);
}

.mask-fast-d0b6 {
    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;
}

.mask-fast-d0b6.column_5ec7 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.mask-fast-d0b6.under_3ea3 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.mask-fast-d0b6.badge_940c {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.mask-fast-d0b6.hidden_aa9b {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.mask-fast-d0b6.dark_a94c {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.texture_fluid_a3a7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.pagination-346f {
    color: var(--text-gray);
    line-height: 1.6;
}

.white_599f {
    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);
}

.message-03b2 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.frame-inner-2041 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.frame-inner-2041 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;
}

.frame-inner-2041 li:last-child {
    border-bottom: none;
}

.frame-inner-2041 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.gradient_1345 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .gradient_1345 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gradient_1345 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.easy-b0ab {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.easy-b0ab:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.easy-b0ab.large_630d {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .easy-b0ab.large_630d {
        grid-column: span 3;
    }
}

.stone-d739 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.easy-b0ab.large_630d .stone-d739 {
    background: rgba(6, 182, 212, 0.1);
}

.slider-2565 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.surface-c4da {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.easy-b0ab.large_630d .surface-c4da {
    color: var(--info-color);
}

.south_e1ce {
    padding: 1.5rem;
    text-align: center;
}

.item-wide-1405 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.easy-b0ab.large_630d .item-wide-1405 {
    color: var(--info-color);
}

.disabled_cdc8 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.dynamic_cd1c {
    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 */
.info_1aca {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .info_1aca {
        grid-template-columns: repeat(4, 1fr);
    }
}

.status-smooth-3a34 {
    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);
}

.status-smooth-3a34:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.item_e197 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.up-b73c {
    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);
}

.out_10df {
    font-size: 2rem;
    flex-shrink: 0;
}

.pattern_red_2b10 {
    flex: 1;
}

.badge-0ca3 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.wrapper-5c9d {
    color: var(--text-gray);
    line-height: 1.6;
}

.media-mini-956b {
    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);
}

.under_9bed {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.tooltip_2656 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.grid_edc2 {
    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);
}

.south-1725 {
  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);
}

.south-1725 .action-7453 {
    text-align: center;
}

.south-1725 .hover-8389 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.south-1725 .west-c879 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.badge_c06e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.inner_900c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.filter_solid_0d96 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.mask_1366 {
    color: var(--text-gray);
    line-height: 1.6;
}

.background-9304 {
    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);
}

.form-1cba {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.accent-db18 {
    color: var(--text-gray);
    line-height: 1.6;
}

.full_7331 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .full_7331 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .full_7331 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.video_e39a {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.video_e39a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.lite_8b90 {
    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);
}

.down-7a3a {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.surface-simple-9adc {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.brown-ad9f {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.brown-ad9f.fixed_14fa {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.brown-ad9f.item-23d0 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.brown-ad9f.summary-steel-0e9d {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.breadcrumb_hovered_61ee {
    padding: 1.5rem;
    text-align: center;
}

.aside-upper-d0b6 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.backdrop-over-afaa {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.backdrop-over-afaa .secondary_a81d {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.last_99f5 {
    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);
}

.last_99f5:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.gold-549d {
  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);
}

.shadow-2eea {
    text-align: center;
}

.shadow-2eea .hover-8389 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.shadow-2eea .west-c879 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.backdrop_6b28 { text-align: center; }
.dirty-108c { text-align: left; }
.motion-5cf1 { text-align: right; }

.preview-9ad1 { margin-bottom: 0; }
.outer_13b4 { margin-bottom: 0.5rem; }
.fast-40a5 { margin-bottom: 1rem; }
.easy-c4db { margin-bottom: 1.5rem; }
.layout_3caf { margin-bottom: 2rem; }

.cold-00ba { margin-top: 0; }
.hero-yellow-34bb { margin-top: 0.5rem; }
.accordion_selected_8a7c { margin-top: 1rem; }
.accent-d377 { margin-top: 1.5rem; }
.item-50b7 { margin-top: 2rem; }

.fn-hidden-ff31 { display: none; }
.fn-visible-ff31 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .banner-bbfc {
        padding: 6rem 0 3rem;
    }
    
    .item_down_201d {
        text-align: center;
    }
    
    .backdrop_5ceb {
        text-align: center;
    }
    
    .alert-yellow-40b0 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .primary_top_f428,
    .hidden_blue_7523,
    .hover_6392,
    .button_complex_f5e5 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .banner-bbfc {
        background: none;
    }
}

/* Providers Section */
.fast-1cec {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.row-next-9207 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .row-next-9207 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .row-next-9207 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.shadow-009c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.shadow-009c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.liquid-7680 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.heading_6894 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.main_medium_1bc9 {
    list-style: none;
    padding: 0;
}

.main_medium_1bc9 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.main_medium_1bc9 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.footer_1b2e {
    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);
}

.footer_1b2e p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.heading-fast-31ae {
    padding: var(--section-padding);
}

.motion_d79c {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .motion_d79c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.module-764c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.module-764c:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.purple-98f7 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.paper-d52d {
    display: flex;
    flex-direction: column;
}

.hard-49d0 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.south_a01f {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.message-4758 {
    color: var(--accent-color);
}

.widget_left_1095 {
    font-size: 1.25rem;
}

.input_dim_ff02 {
    margin-bottom: 1rem;
}

.input_dim_ff02 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.heading_yellow_7c4a {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.table_clean_156a {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.action-7453 {
    text-align: center;
}

.hover-8389 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.west-c879 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.over_a23a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.block_bright_09dd {
    margin: 2rem 0;
}

.container-bright-75e5 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.container-bright-75e5 .down-3869 {
    font-size: 2rem;
    flex-shrink: 0;
}

.selected_f5d0 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.center-1910 {
    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;
}

.center-1910:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.label_rough_cce9 {
    font-size: 2rem;
}

.header-b8a5 {
    display: flex;
    flex-direction: column;
}

.image-0e18 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.in_472d {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.photo-liquid-5053 {
    padding: var(--section-padding);
}

.image_old_d8ce {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .image_old_d8ce {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .image_old_d8ce {
        grid-template-columns: repeat(3, 1fr);
    }
}

.disabled_fa75 {
    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);
}

.disabled_fa75:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.disabled_fa75 .hover-8389 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.disabled_fa75 .west-c879 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.disabled_fa75 .mini_de1c {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.hard-73bc {
    margin-top: 4rem;
}

.progress_green_4431 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.notification_gold_336f {
    overflow-x: auto;
}

.article_black_825c {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.article_black_825c thead {
    background: var(--accent-color);
}

.article_black_825c th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.article_black_825c td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.article_black_825c tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.article_black_825c tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.disabled-last-a9f7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.static-21f9 {
    max-width: 900px;
    margin: 0 auto;
}

.carousel_stone_7820 {
    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);
}

.carousel_stone_7820:hover {
    border-color: var(--accent-color);
}

.dropdown_south_fb59 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.dropdown_south_fb59 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.prev-ab24 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.carousel_stone_7820.fn-active-ff31 .prev-ab24 {
    transform: rotate(45deg);
}

.focused_8fa9 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.carousel_stone_7820.fn-active-ff31 .focused_8fa9 {
    max-height: 1000px;
}

.focused_8fa9 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.hot-438f {
    padding: var(--section-padding);
}

.label_cc1d {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.tertiary_top_6c51 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.middle-8816 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .middle-8816 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.huge-7359 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outline_518c {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.message_complex_1252 {
    font-size: 2rem;
}

.title-c943 {
    color: var(--text-white);
    margin: 0;
}

.sidebar_cool_8672 {
    list-style: none;
    padding: 0;
}

.sidebar_cool_8672 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar_cool_8672 li:last-child {
    border-bottom: none;
}

.brown_2a18 {
    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);
}

.brown_2a18 p {
    color: var(--success-color);
    margin: 0;
}

.inner_4a44 {
    margin-top: 3rem;
}

.frame_large_b1e1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.texture-rough-bae1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .texture-rough-bae1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.info_8fca {
    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);
}

.tag-78a0 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info_8fca p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.right_0d6d {
    padding: var(--section-padding);
}

.stale_d7f3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .stale_d7f3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sidebar-static-0287 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.sidebar-static-0287:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.banner_c38b {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.widget_43a4 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.banner_focused_d1dd {
    flex: 1;
}

.surface-1edb {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.message-basic-44d3 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.blue-fd41 {
    color: var(--text-gray);
    line-height: 1.6;
}

.cold-4c51 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cold-4c51:last-child {
    border-bottom: none;
}

/* Comparison Section */
.row-6d5d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.middle-8838 {
    padding: var(--section-padding);
}

.preview-a294 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.prev_5c9d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .prev_5c9d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.menu-f24c {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.alert-69f8, .nav-4f7d, .frame-mini-d385 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.frame-mini-d385 {
    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 */
.yellow_1a27 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.container_large_188b {
    margin: 2rem 0;
}

.summary_c1b4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.header_last_5b83 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.up-0248 {
    list-style: none;
    padding: 0;
}

.up-0248 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;
}

.up-0248 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.up-0248 li:last-child {
    border-bottom: none;
}

.link-current-8521 {
    text-align: center;
    margin-top: 2rem;
}

.glass-35ac {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.banner-1a1d {
    padding: var(--section-padding);
}

.fixed-a669 {
    margin: 2rem 0;
}

.filter-2390 {
    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) {
    .filter-2390 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.filter-2390:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.cold_1f80 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.modal-brown-037f {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.shadow_soft_8297 {
    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;
}

.breadcrumb_8b72 {
    flex: 1;
}

.pressed-6291 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.badge-a470 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.down-3a54 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.filter_2cdd {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .filter_2cdd {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.shade_2e1c {
    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);
}

.shade_2e1c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.shade_2e1c .hover-8389 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.shade_2e1c .west-c879 {
    color: var(--text-gray);
    font-size: 1rem;
}

.next-1693 {
    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);
}

.search-iron-3714 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.search-iron-3714 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.overlay_steel_3d8d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .overlay_steel_3d8d {
        grid-template-columns: 1fr 1fr;
    }
}

.silver-1321 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gradient_8dd3 {
    margin-bottom: 1.5rem;
}

.gradient_8dd3 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gradient_8dd3 input,
.gradient_8dd3 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;
}

.gradient_8dd3 input:focus,
.gradient_8dd3 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.heading-up-2ce7 {
    width: 100%;
    margin-top: 1rem;
}

.accordion-3381 {
    display: flex;
    align-items: center;
}

.glass-0943 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.message-eaa5 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.accent_current_e0c1 {
    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;
}

.bright_b23b {
    color: var(--text-gray);
}

.notice-rough-de33 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.yellow-56a0 {
    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);
}

.yellow-56a0 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.info-full-12ae {
    margin-top: 3rem;
}

.warm-b7c1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.frame-selected-9a55 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.motion-0ce1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.in_ca0f {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.in_ca0f:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.accent-0c43 {
    padding: var(--section-padding);
}

.simple_52bd {
    margin: 2rem 0;
}

.icon-c5ab {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.card_5094 {
    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;
}

.card_5094:hover, .card_5094.fn-active-ff31 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.advanced-8db8 {
    display: none;
}

.advanced-8db8.fn-active-ff31 {
    display: block;
}

.pro-f36f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.notice-silver-d042 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.up_be4d h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.up_be4d ul {
    list-style: none;
    padding: 0;
}

.up_be4d ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.up_be4d ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.image-fluid-996f {
    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 */
.surface-dark-de23 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.footer-b7c2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.green-dc8c {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.clean_1164 {
    color: var(--accent-color);
    margin: 0;
}

.block-silver-4c40 {
    display: flex;
    gap: 1.5rem;
}

.texture_warm_d1fe {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.paragraph_motion_daa9 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.tertiary-small-82c9 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.tertiary-small-82c9.video-812c {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.tertiary-small-82c9.bottom-93be {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.tertiary-small-82c9.background-slow-2dca {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.container-da92 {
    margin-top: 2rem;
}

.background_32ec {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.gas_f571 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .gas_f571 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.menu-top-0552 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.texture-86e4 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.secondary_9e90 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.right_7406 {
    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 */
.north_177e {
    padding: var(--section-padding);
}

.title-clean-dc18 {
    margin: 2rem 0;
}

.filter-focused-ef61 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.content-medium-406f {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.carousel-in-870a {
    list-style: none;
    padding: 0;
}

.carousel-in-870a 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;
}

.carousel-in-870a li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.carousel-in-870a li:last-child {
    border-bottom: none;
}

.over-f33f {
    margin: 2rem 0;
}

.simple_ce3e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.fluid-abf6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .fluid-abf6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.east_caef {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.plasma-bfb7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.widget-wood-20b6 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.accordion_1f7f {
    margin-top: 2rem;
}

.alert_0e5e {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.tabs_hard_d63f {
    list-style: none;
    padding: 0;
}

.tag-short-ead2 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.tag-short-ead2 a {
    color: var(--accent-color);
    text-decoration: none;
}

.tag-short-ead2 a:hover {
    text-decoration: underline;
}

.highlight_left_ec5b {
    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 */
.tooltip-dea6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.orange-c547 {
    margin: 2rem 0;
}

.shadow-gas-fd19 {
    margin-bottom: 3rem;
}

.shadow-gas-fd19 .header_last_5b83 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.section-e4eb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.green-1ad0 {
    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);
}

.green-1ad0:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.title-cold-695f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .title-cold-695f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery_selected_1a42 {
    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 */
.footer_stale_71f5 {
    padding: var(--section-padding);
}

.info_7261 {
    margin: 2rem 0;
}

.message_hard_53f1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.light-4324 {
    overflow-x: auto;
    margin: 2rem 0;
}

.simple-6d11 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.brown-2094 {
    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;
}

.center-1f49 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.purple_cb9c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .purple_cb9c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.button-simple-54ba {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.button-simple-54ba .down-3869 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.button-simple-54ba .last-8960 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.gold_d2c4 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.primary_9a79 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.gallery_stone_0b10 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gallery_stone_0b10 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sidebar_adfb {
    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;
}

.sidebar_adfb:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.secondary_red_aa0d {
    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);
}

.stale_b7c2 {
    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;
}

.link-slow-78a7 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.detail-soft-86ea {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.lower-3814 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.hard_4bde {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer_1888 {
    color: var(--text-white);
    font-weight: 600;
}

.nav_huge_8e53 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.filter-edaf {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-edaf .cold_ad7a {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.down_b9f1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .down_b9f1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.disabled_last_b1fe {
    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);
}

.disabled_last_b1fe:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.disabled_last_b1fe .hover-8389 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.disabled_last_b1fe .west-c879 {
    color: var(--text-gray);
    font-size: 1rem;
}

.silver_7206 {
    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);
}

.description-hard-2a3f {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.description-hard-2a3f strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.tag-2224 {
    margin: 2rem 0;
}

.current-efe8 {
    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);
}

.current-efe8:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.in_15a9 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.tiny_2db6 {
    flex: 1;
}

.disabled-7050 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.new-4fe3 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.search-16f8 {
    margin: 2rem 0;
}

.frame-next-9231 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.frame-next-9231 .last-8960 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.frame-next-9231 .disabled-warm-9c98 {
    color: var(--text-gray);
    margin: 0;
}

.selected-affb {
    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);
}

.selected-affb .left_ca95 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.gold_d2c4 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.up-e3a5 {
    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;
}

.notice_6c76 {
    flex: 1;
}

.fluid_d2c6 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.badge-yellow-f3c7 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.box-e7b2 {
    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;
}

.feature-action-806c {
    flex: 1;
}

.west-3385 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.bronze-e9a0 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.bright_e725 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.input_a938 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.medium-662b {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.medium-662b .cold_ad7a {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.feature_full_90bc {
    margin-top: 2rem;
}

.feature_full_90bc .frame_large_b1e1 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.preview-e4a2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.preview-soft-b5fb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .preview-soft-b5fb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.preview-soft-b5fb .action-7453 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.banner-focused-5f5b {
    margin: 2rem 0;
}

.menu_dynamic_58b6 {
    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 */
.accent_f6b1 {
    padding: var(--section-padding);
}

.modal_lower_22a2 {
    margin-top: 1rem;
}

.current-c406 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.current-c406 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.current-c406 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.sort_5dab {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.info-advanced-4321 {
    margin: 2rem 0;
}

.old-6d12 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.overlay-3884 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.popup_last_4817 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.tiny_d647 {
    margin: 2rem 0;
}

.button_ff3a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.button_ff3a .header_last_5b83 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tooltip-red-fb01 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .tooltip-red-fb01 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.border_green_0b17 {
    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);
}

.article_6431 {
    color: var(--text-white);
    font-weight: 600;
}

.video_focused_237a {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.status_hovered_e0eb {
    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);
}

.status_hovered_e0eb p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.alert_aec0 {
    padding: var(--section-padding);
}

.button-orange-eb5d {
    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;
}

.button-orange-eb5d:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.notice-fa8c {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.notice-fa8c .tag-78a0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.notice-fa8c .advanced-00f5 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.surface-60f7 {
    flex: 1;
}

.label_right_6898 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.dirty_56ee {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dirty_56ee li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.dirty_56ee li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.outline_72f2 {
    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);
}

.outline_72f2 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.outline_72f2 strong {
    color: var(--warning-color);
}

/* Slots Section */
.pro-21b1 {
    padding: var(--section-padding);
}

.progress_16f9 {
    margin: 2rem 0;
}

/* Table Games Section */
.texture_cold_26f0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tooltip_lite_3900 {
    margin: 2rem 0;
}

.easy_69ae {
    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);
}

.easy_69ae:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.easy_69ae .steel-4f36 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.easy_69ae .element_f6a3 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.paragraph-steel-c2a5 {
    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);
}

.paragraph-steel-c2a5 .left_ca95 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.caption_yellow_0440 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hidden-silver-96b9 {
    margin: 2rem 0;
}

.shade_focused_27fe {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.texture-basic-5165 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.shade_5945 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.image-ae78 {
    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);
}

.image-ae78:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.image-ae78.fn-active-ff31 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.header-f928 {
    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);
}

.short-cd50 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.short-cd50 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.list-b9bd {
    padding: var(--section-padding);
}

.iron_4394 {
    margin: 2rem 0;
}

.gold_0464 {
    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);
}

.gold_0464:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .gold_0464 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.highlight_6b67 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.notice-paper-d9bb {
    flex: 1;
}

.sort_mini_b614 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.feature-stale-e3ff {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.secondary-focused-f930 {
    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;
}

.breadcrumb-next-ebb3 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.tag-west-a992 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.yellow_7641 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.card-lower-34b9 {
    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;
}

.card-lower-34b9:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.nav-9a04 {
    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);
}

.over_3ff9 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.over_3ff9 strong {
    color: var(--accent-color);
}

/* New Games Section */
.disabled-focused-823a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hidden_cfb9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .hidden_cfb9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hidden_cfb9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.item-4926 {
    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;
}

.item-4926:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.thumbnail-b692 {
    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;
}

.notification_2121 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.tiny-b33b {
    font-size: 2rem;
}

.in-63bc {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.label_tiny_4182 {
    flex: 1;
}

.hero-thick-774f {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.text-cbf5 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.picture_focused_2097 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.image_fast_92a4 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.label-0e51 {
    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;
}

.item_f033 {
    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;
}

.item_f033:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.inner-dbb7 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.footer_down_9c01 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.breadcrumb_b7cd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .breadcrumb_b7cd {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tabs-ad09 {
    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);
}

.main_lite_639c {
    color: var(--text-white);
    font-weight: 600;
}

.summary_abfc {
    color: var(--accent-color);
    font-weight: 600;
}

.label_683f {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.label_683f strong {
    color: var(--accent-color);
}

/* Security Section */
.search_outer_a195 {
    padding: var(--section-padding);
}

/* Benefits Section */
.accordion_pressed_40e5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.badge-gas-ac3b {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.icon-d3ef {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.bottom_ec7b {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.soft-8f6c {
    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) {
    .soft-8f6c {
        flex-direction: column;
        gap: 1rem;
    }
}

.soft-8f6c:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.soft-8f6c .box-e7b2 {
    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;
}

.soft-8f6c .feature-action-806c {
    flex: 1;
}

.soft-8f6c .west-3385 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.soft-8f6c .bronze-e9a0 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.focus_solid_a5b7 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.focus_solid_a5b7 .badge-0ca3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.focus_solid_a5b7 .smooth_b9b1 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.focus_solid_a5b7 .smooth_b9b1 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.focus_solid_a5b7 .smooth_b9b1 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.main-fixed-d9ed {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.button_in_9110 {
    padding: var(--section-padding);
}

.bronze_ec73 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .bronze_ec73 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.main_7b44 {
    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);
}

.main_7b44:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.main_7b44 .slider-black-af16 {
    font-size: 2rem;
    flex-shrink: 0;
}

.main_7b44 .tabs-large-f866 {
    flex: 1;
}

.main_7b44 .info_ce13 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.main_7b44 .video_2899 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.large_8416 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.large_8416 .in-8a37 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.large_8416 .detail_bd97 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.large_8416 .detail_bd97 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);
}

.large_8416 .detail_bd97 li:last-child {
    border-bottom: none;
}

.large_8416 .detail_bd97 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;
}

.large_8416 .detail_bd97 li strong {
    color: var(--text-white);
}

.complex-cc07 {
    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);
}

.complex-cc07 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.complex-cc07 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.west-04ec {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.content_red_1bd7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .content_red_1bd7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.in_7a33 {
    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_7a33:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.first-fa2c {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.photo_brown_d502 {
    font-size: 2rem;
}

.frame_under_d0f7 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.static_a4a1 {
    flex: 1;
}

.upper-66cb {
    list-style: none;
    padding: 0;
    margin: 0;
}

.upper-66cb li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.upper-66cb li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.caption-ffe4 {
    margin-top: 3rem;
}

.filter-focused-ef61 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.content-medium-406f {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.carousel-in-870a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.carousel-in-870a li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.carousel-in-870a li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.carousel-in-870a li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.stone_018e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.preview_4a89 {
    margin: 2rem 0;
}

.main_6404 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.main_6404 .header_last_5b83 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hard_10ed {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hard_10ed {
        grid-template-columns: repeat(2, 1fr);
    }
}

.paper-5b33 {
    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);
}

.paper-5b33:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.notification-487d {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.column-13bf {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.aside_dirty_3128 {
    padding: var(--section-padding);
}

.basic_554c {
    margin: 2rem 0;
}

.heading-glass-52bd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .heading-glass-52bd {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .heading-glass-52bd {
        grid-template-columns: repeat(3, 1fr);
    }
}

.green_9d36 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.green_9d36:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.basic_350e {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.filter_e5bc {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.widget-static-5ea0 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.widget-static-5ea0.summary-silver-a3d5 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.main-simple-094f {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.smooth_795f {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.under-1994 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sort-east-7c96 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.caption-top-7388 {
    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);
}

.caption-top-7388 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.caption-top-7388 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.light-c919 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.solid_b2cb {
    margin: 2rem 0;
}

.title_55d0 {
    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) {
    .title_55d0 {
        flex-direction: column;
        gap: 1rem;
    }
}

.title_55d0:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.title_55d0::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);
}

.footer_fa5c {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.gradient-next-05cf {
    flex: 1;
}

.form_pressed_abb6 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.gold-864c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gold-864c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.tiny-4619 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.media-2ead {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.title_active_2efe {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .title_active_2efe {
        grid-template-columns: repeat(3, 1fr);
    }
}

.paragraph-huge-263f {
    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);
}

.primary-f60c {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.caption-hard-5069 {
    flex: 1;
}

.copper_0eea {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.hero-a426 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.title_pressed_e812 {
    margin-top: 2rem;
    text-align: center;
}

.avatar_action_3e1d {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.avatar_action_3e1d strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.aside-ead8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .aside-ead8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.notice-4881 {
    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);
}

.notice-4881:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.notice-4881 .slider-simple-943a {
    font-size: 2rem;
    flex-shrink: 0;
}

.notice-4881 .table_80f3 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.notice-4881 .silver-f8cc {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.notice-4881 .green-6b4a {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.notice_hovered_47f4 {
    padding: var(--section-padding);
}

.hot-b28e .current_55aa {
    flex: 1;
}

/* Promo Calendar Section */
.logo_e1bb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.icon-purple-b716 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .icon-purple-b716 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.frame-first-6e3c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dirty_31b0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.overlay_dim_2ad1 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dim-1fc3 {
    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);
}

.caption-e6b0 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.orange-3370 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.summary-4ed5 {
    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);
}

.summary-4ed5 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.summary-4ed5 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.motion-6aed {
    padding: var(--section-padding);
}

.summary-6dbf {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .summary-6dbf {
        grid-template-columns: repeat(2, 1fr);
    }
}

.widget-glass-2b54 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.grid-fixed-4db6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tiny_9658 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tiny_9658 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.badge_4946 {
    margin-top: 3rem;
}

.badge_4946 .filter-focused-ef61 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.badge_4946 .content-medium-406f {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.badge_4946 .carousel-in-870a {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.badge_4946 .carousel-in-870a li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.badge_4946 .carousel-in-870a li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.badge_4946 .carousel-in-870a li strong {
    color: var(--warning-color);
}

.huge-2d75 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.huge-2d75 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.banner_pressed_3655 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.texture-lower-3f22 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .texture-lower-3f22 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.form_up_d205 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.form_up_d205 .header_last_5b83 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.column_white_96cd {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.north_ea2d {
    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);
}

.north_ea2d:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.alert-over-aad9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.background-44aa {
    flex: 1;
}

.heading_e25a {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.alert-7c54 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.east-1765 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.pro_dfac {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.pagination-orange-bbcc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .pagination-orange-bbcc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.primary-da77 {
    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);
}

.primary-da77:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.pink_82a5 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hovered-23b6 {
    color: var(--text-gray);
    font-size: 1rem;
}

.search-iron-3714 {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.red_ea48 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.red_ea48 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.plasma_1816 { 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; }
.link_c3e7, .slider_69d3 { max-width:100%; height:auto; }

.tertiary_1e91, .advanced_1fc3, .section_blue_36e5 { white-space:normal; }

.item_down_201d,
.backdrop_5ceb,
.info_1aca,
.aside-ead8,
.search-16f8,
.full_7331 {
  flex-wrap:wrap;
}

[class*="grid"],
.pagination-orange-bbcc,
.heading-glass-52bd,
.feature_5c3d {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.banner-bbfc img,
.backdrop_5ceb img,
.layout-5bd0 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.picture_basic_b94b, .motion-de2a,
.frame-soft-22cb, .green-b9e4 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.notification_gold_336f { width:100%; overflow-x:auto; }
.notification_gold_336f table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.row-next-9207 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .row-next-9207 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.shadow-009c {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.image_old_d8ce,
.accordion_ef08,
.fast-fc4f,
.gallery_4601,
.filter_2cdd,
.pagination-orange-bbcc,
.heading-glass-52bd,
.feature_5c3d,
.gold-549d,
.iron_4394,
.row-next-9207 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .image_old_d8ce,
  .accordion_ef08,
  .fast-fc4f,
  .gallery_4601,
  .filter_2cdd,
  .pagination-orange-bbcc,
  .heading-glass-52bd,
  .feature_5c3d,
  .gold-549d,
  .iron_4394,
  .row-next-9207 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.disabled_fa75,
.shade_2e1c,
.primary-da77,
.list-a323,
.green_9d36,
.shadow-2eea,
.gold_0464,
.shadow-009c {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.paper-0afd,
.lower_b9d4,
.pagination-liquid-26d0 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.paper-0afd > *,
.lower_b9d4 > *,
.pagination-liquid-26d0 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: f42c */
.promo-block-q8 {
  padding: 0.1rem;
  font-size: 13px;
  line-height: 1.2;
}
