/* {$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;
}

.widget_narrow_a466 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.shadow_wood_7e9d {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .shadow_wood_7e9d {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .shadow_wood_7e9d {
        padding: 0 2rem;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--text-white);
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.875rem);
    color: var(--accent-color);
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

strong {
    color: var(--accent-color);
    font-weight: 600;
}

/* Header Styles */
.label-674d {
    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);
}

.under-3374 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .under-3374 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .iron_7cb2 {
        grid-column: 1;
    }
    
    .main_fresh_bdef {
        grid-column: 2;
    }
    
    .border-631c {
        grid-column: 3;
    }
}

.iron_7cb2 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.iron_7cb2:hover img {
    transform: scale(1.05);
}

/* Navigation */
.green_a86a {
    display: none;
}

@media (min-width: 1024px) {
    .green_a86a {
        display: block;
    }
}

/* Grouped Navigation */
.sidebar_88b0 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.notice_a3ab {
    position: relative;
}

.outline-ddef {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.notice_a3ab .cool_8541 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.cool_8541 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.upper-95e2 {
    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;
}

.upper-95e2:hover,
.upper-95e2.fn-active-4562 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.video_pink_cb37 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .video_pink_cb37 {
        display: flex;
    }
}

/* Mobile Register Button */
.main_fresh_bdef {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .main_fresh_bdef {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.container-light-fc17 {
    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;
}

.container-light-fc17::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 */
.border-631c {
    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) {
    .border-631c {
        display: none;
    }
}

.border-631c span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.border-631c.fn-active-4562 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.border-631c.fn-active-4562 span:nth-child(2) {
    opacity: 0;
}

.border-631c.fn-active-4562 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.hard-73ba {
    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;
}

.hard-73ba.fn-active-4562 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.mask-9cd0 {
    overflow: hidden;
}

.mini_6369 {
    list-style: none;
    padding: 0.75rem 0;
}

.preview-simple-91dd {
    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;
}

.preview-simple-91dd:hover,
.preview-simple-91dd.fn-active-4562 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.preview-simple-91dd.message-4433 {
    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;
}

.preview-simple-91dd.message-4433::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 */
.short_5f07 {
    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;
}

.top-24c9 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.top-24c9:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.stone-e781 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.stone-e781:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.motion_27e0 {
    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;
}

.motion_27e0:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.sidebar_04b6 {
    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;
}

.banner_c0a5 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.banner_c0a5:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.chip_focused_b33c {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.chip_focused_b33c:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.green_eb9f {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.green_eb9f: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);
}

.huge_e9c5 {
    font-size: 1em;
    font-weight: 700;
}

.border-lite-6270 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.picture_80b4 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.picture_80b4::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-fresh-ef3c {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .item-fresh-ef3c {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.gold-9fb9 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.purple-abb9 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.motion-4c46 {
    margin-bottom: 2rem;
}

.red-dff5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .red-dff5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accordion_7e3d {
    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);
}

.item-60de {
    font-size: 1.5rem;
}

.form_static_9926 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.layout_fd02 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.component-1e1d {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.component-1e1d:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.pressed_a8b0 {
    text-align: center;
    margin-bottom: 3rem;
}

.white-240c {
    margin-bottom: 1rem;
}

.bright-505b {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.message-pro-16d2 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .message-pro-16d2 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .message-pro-16d2.carousel-red-e9ca {
        direction: rtl;
    }
    
    .message-pro-16d2.carousel-red-e9ca > * {
        direction: ltr;
    }
}

.center_2d65 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.center_2d65:first-child {
    margin-top: 0;
}

.dynamic-8a26 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.motion-3dc3 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.motion-3dc3:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.pro-a406 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pro-a406 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.item_fluid_b89d {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.iron-f0c2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.new-9932 {
    list-style: none;
}

.new-9932 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.new-9932 li:last-child {
    border-bottom: none;
}

/* Games Features */
.media-14fd {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.avatar_6fba {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.cold_bcc4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.progress_69dd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.description_7ef5 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.avatar_2799 {
    margin: 2rem 0;
}

.top-8f9c {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.east-6d45 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.over-5b66 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.texture_53c0 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.top-f406 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .top-f406 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.inner-168c {
    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);
}

.inner-168c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.media_liquid_9dab {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.center-19e2 {
    font-size: 1.5rem;
}

.article-fast-7204 {
    color: var(--accent-color);
    margin: 0;
}

.header-2442 {
    list-style: none;
}

.header-2442 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.header-2442 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.out_a89a {
    margin: 2rem 0;
}

.title_2c77 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.new_38a5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .new_38a5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.complex-77fd {
    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);
}

.slider-cd43 {
    font-size: 1.25rem;
}

.panel-a347 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.new-2c42,
.item_896a {
    text-align: center;
    margin: 2rem 0;
}

.copper-d1c1,
.shade_b5b7 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.shade-965b {
    margin: 2rem 0;
    text-align: center;
}

.bronze_9fae {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bronze_9fae::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;
}

.card-470d {
    position: relative;
    z-index: 1;
}

.nav_down_9be4 {
    margin-bottom: 1rem;
}

.frame_f259 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.warm-9991 {
    margin-bottom: 3rem;
}

.input_998e {
    margin-top: 3rem;
}

.menu_complex_420d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .menu_complex_420d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.menu_complex_420d .accordion_7e3d {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.highlight_gold_d760 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.notification_62cf {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.image-41b9 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.tiny_9a52 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .tiny_9a52 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tiny_9a52 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.aside_light_63da {
    margin-bottom: 1rem;
}

.pink_31ce img {
    margin-bottom: 1rem;
}

.list-current-b385 {
    color: var(--text-gray);
    line-height: 1.6;
}

.dirty_460b {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.south_217f {
    list-style: none;
}

.south_217f li {
    margin-bottom: 0.5rem;
}

.south_217f a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.south_217f a:hover {
    color: var(--accent-color);
}

.grid-plasma-a46c {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.secondary-tall-889d {
    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);
}

.secondary-tall-889d:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.yellow-1633 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.yellow-1633 p {
    margin-bottom: 0.25rem;
}

.north-7f02 {
    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) {
    .north-7f02 {
        flex-direction: row;
    }
}

.action_d374 {
    text-align: center;
}

@media (min-width: 768px) {
    .action_d374 {
        text-align: left;
    }
}

.action_d374 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.pro_df8d {
    font-size: 0.75rem !important;
}

.left-9a2a {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.icon_outer_ce8f {
    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);
    }
}

.frame-9c9c {
    animation: fadeInUp 0.6s ease-out;
}

.summary_rough_f38f {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.surface-3b5f {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .surface-3b5f {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.hover_rough_ef01 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hover_rough_ef01 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.bright_31c5 {
    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);
}

.bright_31c5 .cold_bcc4 {
    font-size: 1.25rem;
}

.bright_31c5 .form_smooth_4833 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.wood-555e {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .wood-555e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.row_yellow_9873 {
    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);
}

.row_yellow_9873:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.caption_bright_66b1 {
    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);
}

.new_57f8 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.secondary-new-8217 {
    color: var(--text-gray);
    line-height: 1.6;
}

.lower_f7dd {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.input_steel_9797 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.input_steel_9797 .progress_69dd {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.input_steel_9797 .description_7ef5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.image_black_1876 {
    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);
}

.heading_pro_9258 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.heading_pro_9258 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.heading_pro_9258 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.orange_7064 {
    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);
}

.hard_1894 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cold-03d5 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cold-03d5 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.cold-03d5 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);
}

.cold-03d5 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.cold-03d5 input::placeholder {
    color: var(--text-muted);
}

.purple-f970 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.border-5a56 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.border-5a56 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.black_0d90 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.black_0d90:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.new_38a5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .new_38a5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.complex-77fd {
    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);
}

.complex-77fd .slider-cd43 {
    font-size: 1.25rem;
}

.complex-77fd .panel-a347 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.photo_dark_2ab3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.panel_99fe {
    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);
}

.panel_99fe .cold_bcc4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.panel_99fe .progress_69dd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.panel_99fe .description_7ef5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.yellow-8c6f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.mask_62c8 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.mask_62c8 .panel-purple-8d62 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.mask_62c8 .pattern-lite-61f1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.footer_bright_6a32 {
    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);
}

.box_b9c5 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .box_b9c5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.accordion-hovered-5102 {
    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);
}

.accordion-hovered-5102:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.complex_4fa6 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.notification_pressed_11f6 {
    flex: 1;
}

.full_5810 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.pagination_white_186d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.selected-8d61 {
    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);
}

.selected-8d61:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.panel_a64e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .panel_a64e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.badge_hovered_093d {
    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);
}

.badge_hovered_093d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.disabled_0058 {
    font-size: 2rem;
    flex-shrink: 0;
}

.huge-029a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.shade_acd4 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.notice-880a {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.smooth_ec2e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.basic_6d21 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.disabled-3a62 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.disabled-3a62 .header-2447 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.disabled-3a62 .caption_b73e {
    color: var(--text-gray);
    line-height: 1.6;
}

.narrow-afea {
    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);
}

.popup-7faa {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hard_3599 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.hard_3599 .cold_bcc4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hard_3599 .progress_69dd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hard_3599 .description_7ef5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.table-right-95de {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .table-right-95de {
        grid-template-columns: repeat(3, 1fr);
    }
}

.clean_34bf {
    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);
}

.clean_34bf:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.shade-south-10b0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shade-south-10b0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.title_72e8 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.title_72e8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.modal-203c {
    font-size: 2rem;
    flex-shrink: 0;
}

.detail_white_786f {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.east-6d45 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.basic-df98 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.form-6807 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.progress_copper_3761 {
    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);
}

.progress_copper_3761:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.paragraph_7899 {
    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);
}

.small_28c3 {
    flex: 1;
}

.status-stale-c972 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.content_9461 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.backdrop_cff1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tag_21fd {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.solid-8296 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.solid-8296 .panel-purple-8d62 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.solid-8296 .pattern-lite-61f1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.item_896a {
    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);
}

.dropdown_cool_7d9f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dropdown_cool_7d9f {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.border_07d2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .border_07d2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.paragraph_b3a5 {
    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);
}

.paragraph_b3a5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.in_9c41 {
    font-size: 2rem;
    flex-shrink: 0;
}

.full_08c5 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.shade_gold_6150 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.detail_old_610c {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.hard_14fc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.popup-fixed-b254 {
    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);
}

.overlay_fast_d5ab {
    font-size: 2rem;
    flex-shrink: 0;
}

.form_959f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.green_faa2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.popup-7faa {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hard_3599 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.hard_3599 .progress_69dd {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hard_3599 .description_7ef5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.notice-56ab {
    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);
}

.heading-cold-65ba {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .heading-cold-65ba {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .heading-cold-65ba {
        grid-template-columns: repeat(4, 1fr);
    }
}

.next-317a {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.next-317a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.avatar_orange_253a {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.fixed_1863 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.out-a7b2 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.dropdown-bright-5928 {
    padding: 1.5rem;
}

.current-4371 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pro_3531 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pro_3531 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;
}

.pro_3531 li:last-child {
    border-bottom: none;
}

.pro_3531 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.description-glass-1ee1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .description-glass-1ee1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.easy_6bb7 {
    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);
}

.easy_6bb7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.dynamic_65b9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.thick_ba81 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.accent-prev-b6c5 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.progress_last_9a1c {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.menu-a23f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.aside-bright-7db2 {
    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);
}

.clean_b641 {
    font-size: 2rem;
    flex-shrink: 0;
}

.notification-selected-817f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tabs-black-c9da {
    color: var(--text-gray);
    line-height: 1.6;
}

.tabs_old_b614 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.clean_a545 {
    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);
}

.disabled_2eb4 {
    text-align: center;
}

.paper_1f94 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.widget-dbdc {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.glass_6e60 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.column_south_b2ba {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.column_south_b2ba .progress_69dd {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.column_south_b2ba .description_7ef5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hard-3dc3 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .hard-3dc3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hard-3dc3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.alert_8030 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.alert_8030:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.accordion-narrow-19cf {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.backdrop_1bb1 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.progress_69dd {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.west_4487 {
    padding: 1.5rem;
}

.description_7ef5 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.chip_white_0bed {
    list-style: none;
    padding: 0;
    margin: 0;
}

.chip_white_0bed 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;
}

.chip_white_0bed li:last-child {
    border-bottom: none;
}

.chip_white_0bed li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.photo-4699 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.panel_288b {
    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);
}

.panel_288b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.slider-bc80 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.accent-hot-cc57 {
    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);
}

.caption_bright_66b1 {
    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;
}

.new_57f8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.secondary-new-8217 {
    color: var(--text-gray);
    line-height: 1.6;
}

.pagination-bottom-6fde {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gold_7814 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.dropdown-full-1cf6 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.banner_ca8d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.primary-913a {
    display: flex;
    gap: 1rem;
}

.primary-913a .caption_easy_6a5e {
    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;
}

.green_0d88 {
    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);
}

.north-a112 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.small-3a25 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.small-3a25 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;
}

.small-3a25 li:last-child {
    border-bottom: none;
}

.small-3a25 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.input_bcd0 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .input_bcd0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .input_bcd0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.main-thick-aaac {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.main-thick-aaac:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.steel-aad7 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.title-8194 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.header-2447 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.gradient_left_92de {
    font-size: 1rem;
}

.widget_current_f2d0 {
    padding: 1.5rem;
}

.caption_b73e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.grid_26d4 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.grid_26d4 .disabled_2eb4 {
    text-align: center;
}

.grid_26d4 .widget-dbdc {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.grid_26d4 .primary-warm-2227 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.solid_0c7e {
    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);
}

.solid_0c7e:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.caption-ede5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .caption-ede5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wide_49e6 {
    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);
}

.wide_49e6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.focus-active-9eee {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.panel-huge-8256 {
    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-9336 {
    font-size: 2rem;
    flex-shrink: 0;
}

.border-south-b4f8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.iron_b2c6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tiny-65a3 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.caption-green-b978 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.new-b1c2 {
    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);
}

.box_5a8a {
    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;
}

.box_5a8a.search-stale-2b46 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.box_5a8a.image-16ff {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.box_5a8a.plasma-e88d {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.box_5a8a.carousel-dark-c28c {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.box_5a8a.primary_6097 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.accent_fresh_5cf8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.caption-outer-c6df {
    color: var(--text-gray);
    line-height: 1.6;
}

.component_wide_9bcf {
    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);
}

.main-new-0814 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.yellow-8c6f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.yellow-8c6f 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;
}

.yellow-8c6f li:last-child {
    border-bottom: none;
}

.yellow-8c6f li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.content_0348 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .content_0348 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .content_0348 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.current-3054 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.current-3054:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.current-3054.search-slow-43f3 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .current-3054.search-slow-43f3 {
        grid-column: span 3;
    }
}

.red_d52a {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.current-3054.search-slow-43f3 .red_d52a {
    background: rgba(6, 182, 212, 0.1);
}

.sort_upper_b92b {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.orange_0ca0 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.current-3054.search-slow-43f3 .orange_0ca0 {
    color: var(--info-color);
}

.tooltip_dirty_de31 {
    padding: 1.5rem;
    text-align: center;
}

.header_a127 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.current-3054.search-slow-43f3 .header_a127 {
    color: var(--info-color);
}

.search-67a1 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.item-ca68 {
    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 */
.badge_pink_de3c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .badge_pink_de3c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.large-5e41 {
    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);
}

.large-5e41:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.fixed_f75c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.panel_99fe {
    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);
}

.slider-cd43 {
    font-size: 2rem;
    flex-shrink: 0;
}

.small_5cc9 {
    flex: 1;
}

.title_2c77 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.status_new_b681 {
    color: var(--text-gray);
    line-height: 1.6;
}

.frame_lite_8dea {
    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);
}

.block-solid-1600 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.table-last-07d7 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.icon_outer_ce8f {
    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);
}

.dirty_58ab {
  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);
}

.dirty_58ab .disabled_2eb4 {
    text-align: center;
}

.dirty_58ab .paper_1f94 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.dirty_58ab .widget-dbdc {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.border_0013 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pro-5839 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.glass-f1fb {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.aside-outer-11c8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.caption_basic_e005 {
    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);
}

.active-dynamic-4343 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.backdrop-45dd {
    color: var(--text-gray);
    line-height: 1.6;
}

.element_easy_17d2 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .element_easy_17d2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .element_easy_17d2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.nav_15a3 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.nav_15a3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.focused-771c {
    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);
}

.avatar-19be {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.search_e3c1 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.row_cold_6267 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.row_cold_6267.accordion_advanced_27f5 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.row_cold_6267.focused_dfc2 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.row_cold_6267.card_light_8c83 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.item_stone_5b86 {
    padding: 1.5rem;
    text-align: center;
}

.fresh-0c43 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.summary_3e1e {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.summary_3e1e .paper_10d0 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.alert-c49c {
    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);
}

.alert-c49c:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.preview_24cc {
  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);
}

.hard-c25f {
    text-align: center;
}

.hard-c25f .paper_1f94 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.hard-c25f .widget-dbdc {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.label_7adb { text-align: center; }
.icon_e3ee { text-align: left; }
.preview-8847 { text-align: right; }

.input-9089 { margin-bottom: 0; }
.mask_basic_03e7 { margin-bottom: 0.5rem; }
.content_6980 { margin-bottom: 1rem; }
.active-8a6d { margin-bottom: 1.5rem; }
.fluid-5208 { margin-bottom: 2rem; }

.grid_f6f6 { margin-top: 0; }
.summary_c23e { margin-top: 0.5rem; }
.hard_9e2c { margin-top: 1rem; }
.dropdown-20b9 { margin-top: 1.5rem; }
.active-01a6 { margin-top: 2rem; }

.fn-hidden-4562 { display: none; }
.fn-visible-4562 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .picture_80b4 {
        padding: 6rem 0 3rem;
    }
    
    .item-fresh-ef3c {
        text-align: center;
    }
    
    .message-pro-16d2 {
        text-align: center;
    }
    
    .red-dff5 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .label-674d,
    .hard-73ba,
    .bronze_9fae,
    .image-41b9 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .picture_80b4 {
        background: none;
    }
}

/* Providers Section */
.liquid_51f5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.picture-9b95 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .picture-9b95 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .picture-9b95 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.current_e85f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.current_e85f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.up-f363 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.mask_7b49 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.element-north-aa79 {
    list-style: none;
    padding: 0;
}

.element-north-aa79 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.element-north-aa79 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.last_8837 {
    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);
}

.last_8837 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.cool-07b0 {
    padding: var(--section-padding);
}

.breadcrumb_e34c {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .breadcrumb_e34c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.east_838d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.east_838d:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.heading-solid-f712 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.hovered-4cd2 {
    display: flex;
    flex-direction: column;
}

.module-pink-5569 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.purple-688f {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.link-7e03 {
    color: var(--accent-color);
}

.dynamic_ec11 {
    font-size: 1.25rem;
}

.wood-4330 {
    margin-bottom: 1rem;
}

.wood-4330 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.wide_f6d9 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.carousel_white_5867 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.disabled_2eb4 {
    text-align: center;
}

.paper_1f94 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.widget-dbdc {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.slider-top-2105 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.paper_aa9a {
    margin: 2rem 0;
}

.table-3de0 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.table-3de0 .cold_bcc4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.fluid_e9be {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.inner_e7ab {
    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;
}

.inner_e7ab:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.icon-3431 {
    font-size: 2rem;
}

.stale_a022 {
    display: flex;
    flex-direction: column;
}

.breadcrumb-in-d52b {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.advanced-0194 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.in-9baa {
    padding: var(--section-padding);
}

.container-up-df9a {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .container-up-df9a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .container-up-df9a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dirty-ef8b {
    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);
}

.dirty-ef8b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.dirty-ef8b .paper_1f94 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.dirty-ef8b .widget-dbdc {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.dirty-ef8b .iron_3d10 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.gas-5a4f {
    margin-top: 4rem;
}

.pink_ec6d {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.cold_ecff {
    overflow-x: auto;
}

.breadcrumb_af10 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.breadcrumb_af10 thead {
    background: var(--accent-color);
}

.breadcrumb_af10 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.breadcrumb_af10 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.breadcrumb_af10 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.breadcrumb_af10 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.label_4c80 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.preview_6014 {
    max-width: 900px;
    margin: 0 auto;
}

.content-a16c {
    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);
}

.content-a16c:hover {
    border-color: var(--accent-color);
}

.steel-1761 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.steel-1761 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.pro-6614 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.content-a16c.fn-active-4562 .pro-6614 {
    transform: rotate(45deg);
}

.tertiary_48f0 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.content-a16c.fn-active-4562 .tertiary_48f0 {
    max-height: 1000px;
}

.tertiary_48f0 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.pink-7d7a {
    padding: var(--section-padding);
}

.heading_pro_9258 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.huge_6fe3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.table-de8f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .table-de8f {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tiny-3ff9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.component_6d9d {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.popup-9c55 {
    font-size: 2rem;
}

.dynamic-a13d {
    color: var(--text-white);
    margin: 0;
}

.menu_6ed2 {
    list-style: none;
    padding: 0;
}

.menu_6ed2 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu_6ed2 li:last-child {
    border-bottom: none;
}

.aside_8bef {
    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);
}

.aside_8bef p {
    color: var(--success-color);
    margin: 0;
}

.overlay-faf4 {
    margin-top: 3rem;
}

.north-a112 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.hovered-f31f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hovered-f31f {
        grid-template-columns: repeat(2, 1fr);
    }
}

.list_452a {
    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);
}

.west_d531 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.list_452a p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.button-eddc {
    padding: var(--section-padding);
}

.media_047b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .media_047b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.layout_tall_77e4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.layout_tall_77e4:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.element_over_4f98 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.narrow_7bd2 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.old-94be {
    flex: 1;
}

.copper-7e3b {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.border-0290 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.outer-11e7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.west-d2c7 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.west-d2c7:last-child {
    border-bottom: none;
}

/* Comparison Section */
.glass-5cbf {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.component_fast_0d0b {
    padding: var(--section-padding);
}

.avatar_east_9f44 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.tabs-0758 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tabs-0758 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dynamic-2bec {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.middle_7168, .aside_easy_4c13, .modal_092e {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.modal_092e {
    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 */
.popup_active_83b0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.action_4c84 {
    margin: 2rem 0;
}

.silver_d431 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.heading-last-1180 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.down_374e {
    list-style: none;
    padding: 0;
}

.down_374e 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;
}

.down_374e li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.down_374e li:last-child {
    border-bottom: none;
}

.search_f6c4 {
    text-align: center;
    margin-top: 2rem;
}

.small_6fbd {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.right_212d {
    padding: var(--section-padding);
}

.pattern-down-9053 {
    margin: 2rem 0;
}

.block-0150 {
    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) {
    .block-0150 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.block-0150:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.thumbnail-aea9 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.image-easy-09b0 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.preview-ffb5 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.pattern-562c {
    flex: 1;
}

.gallery_ae1b {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.video-top-3a63 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.banner_0831 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.thumbnail_b626 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .thumbnail_b626 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.notification-orange-0394 {
    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);
}

.notification-orange-0394:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.notification-orange-0394 .paper_1f94 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.notification-orange-0394 .widget-dbdc {
    color: var(--text-gray);
    font-size: 1rem;
}

.accent_88fb {
    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);
}

.pink-4a52 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.pink-4a52 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.content-1af8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .content-1af8 {
        grid-template-columns: 1fr 1fr;
    }
}

.primary-solid-f73c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.layout_ef94 {
    margin-bottom: 1.5rem;
}

.layout_ef94 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.layout_ef94 input,
.layout_ef94 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;
}

.layout_ef94 input:focus,
.layout_ef94 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.pressed-e340 {
    width: 100%;
    margin-top: 1rem;
}

.accent-liquid-d928 {
    display: flex;
    align-items: center;
}

.active-0a8c {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.footer_action_6d7d {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.grid-brown-3a67 {
    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;
}

.easy_9936 {
    color: var(--text-gray);
}

.notice-ab14 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.cool-eb82 {
    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);
}

.cool-eb82 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.nav_a5b2 {
    margin-top: 3rem;
}

.pink_3ad4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.row_right_1769 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.texture-9a9c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.grid_183d {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.grid_183d:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.huge-ab29 {
    padding: var(--section-padding);
}

.pressed-83dc {
    margin: 2rem 0;
}

.module-f280 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.caption-1349 {
    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;
}

.caption-1349:hover, .caption-1349.fn-active-4562 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.north-e2ca {
    display: none;
}

.north-e2ca.fn-active-4562 {
    display: block;
}

.gradient_active_8a01 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.video-0385 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.iron-63c0 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.iron-63c0 ul {
    list-style: none;
    padding: 0;
}

.iron-63c0 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.iron-63c0 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.paper-6ed1 {
    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 */
.glass_3178 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.picture_brown_793a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.down_c4c9 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.element-e0b9 {
    color: var(--accent-color);
    margin: 0;
}

.south-9623 {
    display: flex;
    gap: 1.5rem;
}

.module-clean-5ce3 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.breadcrumb-upper-3329 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.simple_8608 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.simple_8608.caption_dim_e548 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.simple_8608.tabs_a352 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.simple_8608.easy_331c {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.pagination-6fa2 {
    margin-top: 2rem;
}

.sort-6ceb {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.backdrop_gold_b4ed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .backdrop_gold_b4ed {
        grid-template-columns: repeat(4, 1fr);
    }
}

.outline-orange-6af2 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.caption_dbc5 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.carousel-973e {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.lite_9132 {
    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 */
.small-ee27 {
    padding: var(--section-padding);
}

.mask_f246 {
    margin: 2rem 0;
}

.outline-bright-51c9 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.last-af50 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.frame-6ac7 {
    list-style: none;
    padding: 0;
}

.frame-6ac7 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;
}

.frame-6ac7 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.frame-6ac7 li:last-child {
    border-bottom: none;
}

.footer-stone-115d {
    margin: 2rem 0;
}

.silver_23c6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.message-898c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .message-898c {
        grid-template-columns: repeat(2, 1fr);
    }
}

.in_c734 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.new-4006 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.photo_6afe {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.carousel-1f81 {
    margin-top: 2rem;
}

.full_5810 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.outline-ad8d {
    list-style: none;
    padding: 0;
}

.mini-0d0b {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.mini-0d0b a {
    color: var(--accent-color);
    text-decoration: none;
}

.mini-0d0b a:hover {
    text-decoration: underline;
}

.photo-e0ca {
    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 */
.lower-ed50 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.thumbnail-ddec {
    margin: 2rem 0;
}

.primary_a089 {
    margin-bottom: 3rem;
}

.primary_a089 .heading-last-1180 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.disabled-dim-6c06 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.black_b754 {
    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);
}

.black_b754:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.summary_narrow_aa39 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .summary_narrow_aa39 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cold_1e5f {
    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 */
.heading-narrow-1eb2 {
    padding: var(--section-padding);
}

.progress-8d6f {
    margin: 2rem 0;
}

.component_motion_aa8c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.short_c637 {
    overflow-x: auto;
    margin: 2rem 0;
}

.avatar-selected-ae21 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.sidebar_e76c {
    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;
}

.link_02b5 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.table-27d8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .table-27d8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.banner_gold_33f7 {
    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_gold_33f7 .cold_bcc4 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.banner_gold_33f7 .progress_69dd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.grid-south-a6ef {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.icon-1087 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.focused-f19b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .focused-f19b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.background-e7f5 {
    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;
}

.background-e7f5:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.copper-d4d3 {
    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);
}

.column-75ad {
    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;
}

.grid-a0f8 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.title_e351 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.active-cool-b275 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.layout-dirty-6b22 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.block_e2ba {
    color: var(--text-white);
    font-weight: 600;
}

.info_0f81 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.picture-bdc4 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.picture-bdc4 .caption_easy_6a5e {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.icon_af4f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .icon_af4f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.element-c18a {
    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);
}

.element-c18a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.element-c18a .paper_1f94 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.element-c18a .widget-dbdc {
    color: var(--text-gray);
    font-size: 1rem;
}

.notice-top-1b5b {
    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);
}

.slider_70bb {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.slider_70bb strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.hard_14fc {
    margin: 2rem 0;
}

.popup-fixed-b254 {
    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);
}

.popup-fixed-b254:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.overlay_fast_d5ab {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.pagination-old-818d {
    flex: 1;
}

.form_959f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.green_faa2 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.popup-7faa {
    margin: 2rem 0;
}

.hard_3599 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hard_3599 .progress_69dd {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.hard_3599 .description_7ef5 {
    color: var(--text-gray);
    margin: 0;
}

.notice-56ab {
    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);
}

.notice-56ab .copper-d1c1 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.grid-south-a6ef {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.paragraph_7899 {
    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;
}

.small_28c3 {
    flex: 1;
}

.content_9461 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.backdrop_cff1 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.caption_bright_66b1 {
    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;
}

.left_853d {
    flex: 1;
}

.new_57f8 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.secondary-new-8217 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.dropdown-full-1cf6 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.banner_ca8d {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.primary-913a {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.primary-913a .caption_easy_6a5e {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.green_0d88 {
    margin-top: 2rem;
}

.green_0d88 .north-a112 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.pro-5290 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.clean_a545 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .clean_a545 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.clean_a545 .disabled_2eb4 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.glass_6e60 {
    margin: 2rem 0;
}

.column_south_b2ba {
    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 */
.summary_bc0c {
    padding: var(--section-padding);
}

.west_4487 {
    margin-top: 1rem;
}

.chip_white_0bed {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.chip_white_0bed li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.chip_white_0bed li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.warm-b98d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.photo_ae0a {
    margin: 2rem 0;
}

.active_5d5e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.preview-5843 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.upper_6c5e {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.carousel_0988 {
    margin: 2rem 0;
}

.warm_829b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.warm_829b .heading-last-1180 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.notice_4b8a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .notice_4b8a {
        grid-template-columns: repeat(2, 1fr);
    }
}

.table_north_8ba1 {
    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);
}

.primary_4d42 {
    color: var(--text-white);
    font-weight: 600;
}

.motion_36ed {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.element-4307 {
    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);
}

.element-4307 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.highlight-3dfb {
    padding: var(--section-padding);
}

.feature-stone-5e86 {
    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;
}

.feature-stone-5e86:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.hidden_c98f {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hidden_c98f .west_d531 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hidden_c98f .chip-black-a1c4 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.paragraph-822e {
    flex: 1;
}

.primary-f667 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.paper_fafb {
    list-style: none;
    padding: 0;
    margin: 0;
}

.paper_fafb li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.paper_fafb li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.article-9739 {
    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);
}

.article-9739 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.article-9739 strong {
    color: var(--warning-color);
}

/* Slots Section */
.widget-focused-1da5 {
    padding: var(--section-padding);
}

.smooth_ec2e {
    margin: 2rem 0;
}

/* Table Games Section */
.hidden-6720 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.basic_6d21 {
    margin: 2rem 0;
}

.disabled-3a62 {
    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);
}

.disabled-3a62:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.disabled-3a62 .header-2447 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.disabled-3a62 .caption_b73e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.narrow-afea {
    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);
}

.narrow-afea .copper-d1c1 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.texture_orange_9e89 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.image-north-96bc {
    margin: 2rem 0;
}

.icon-977c {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.content-d29b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hero-df80 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tabs-cool-b100 {
    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);
}

.tabs-cool-b100:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.tabs-cool-b100.fn-active-4562 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.down-4711 {
    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);
}

.button-1227 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.button-1227 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.progress-green-b853 {
    padding: var(--section-padding);
}

.green-83a0 {
    margin: 2rem 0;
}

.over_4b17 {
    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);
}

.over_4b17:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .over_4b17 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.element_b898 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.soft-be9d {
    flex: 1;
}

.aside_gas_d301 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.pink-9d8d {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.border_a8fb {
    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;
}

.title_b85d {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.dark-724a {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.banner_static_6695 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.north_b243 {
    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;
}

.north_b243:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.search_west_2b54 {
    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);
}

.grid-2756 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.grid-2756 strong {
    color: var(--accent-color);
}

/* New Games Section */
.background_stale_8c0c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.liquid_3124 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .liquid_3124 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .liquid_3124 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hidden_pressed_4712 {
    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;
}

.hidden_pressed_4712:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.card_wood_3715 {
    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;
}

.video-smooth-4573 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.lite-e45a {
    font-size: 2rem;
}

.section-wide-2b4a {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.accent_complex_4866 {
    flex: 1;
}

.thumbnail_571a {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.row-tiny-4519 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.pattern-a17d {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.shadow_1689 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tabs_action_c6b3 {
    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;
}

.description-6493 {
    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;
}

.description-6493:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.inner_6b4d {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.module-old-7de1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-old-d882 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .footer-old-d882 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.last_8afa {
    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);
}

.paragraph-a151 {
    color: var(--text-white);
    font-weight: 600;
}

.mask-607f {
    color: var(--accent-color);
    font-weight: 600;
}

.preview_3294 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.preview_3294 strong {
    color: var(--accent-color);
}

/* Security Section */
.footer-1211 {
    padding: var(--section-padding);
}

/* Benefits Section */
.primary_copper_ecef {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.light_7008 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.notification-short-893e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.active_5353 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.logo-in-f1be {
    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) {
    .logo-in-f1be {
        flex-direction: column;
        gap: 1rem;
    }
}

.logo-in-f1be:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.logo-in-f1be .caption_bright_66b1 {
    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;
}

.logo-in-f1be .left_853d {
    flex: 1;
}

.logo-in-f1be .new_57f8 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.logo-in-f1be .secondary-new-8217 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.accent_82b2 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.accent_82b2 .title_2c77 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.accent_82b2 .photo_dark_2ab3 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accent_82b2 .photo_dark_2ab3 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.accent_82b2 .photo_dark_2ab3 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.image-9a5f {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.heading-rough-6ccf {
    padding: var(--section-padding);
}

.card_gold_6124 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .card_gold_6124 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mini-3b10 {
    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);
}

.mini-3b10:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.mini-3b10 .active_hard_0d3c {
    font-size: 2rem;
    flex-shrink: 0;
}

.mini-3b10 .panel-fresh-8e56 {
    flex: 1;
}

.mini-3b10 .panel-purple-8d62 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.mini-3b10 .middle_00ed {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.gradient_33eb {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gradient_33eb .fixed-0923 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.gradient_33eb .thumbnail_steel_cfec {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.gradient_33eb .thumbnail_steel_cfec 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);
}

.gradient_33eb .thumbnail_steel_cfec li:last-child {
    border-bottom: none;
}

.gradient_33eb .thumbnail_steel_cfec 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;
}

.gradient_33eb .thumbnail_steel_cfec li strong {
    color: var(--text-white);
}

.tabs_stale_d2dd {
    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);
}

.tabs_stale_d2dd p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.tabs_stale_d2dd strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.surface_b841 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.panel-west-b280 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .panel-west-b280 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gradient-action-a816 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.gradient-action-a816:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.full-e4a2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.up-1f2c {
    font-size: 2rem;
}

.left-ac7f {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.next_8342 {
    flex: 1;
}

.over_d2fb {
    list-style: none;
    padding: 0;
    margin: 0;
}

.over_d2fb li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.over_d2fb li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.liquid_d831 {
    margin-top: 3rem;
}

.outline-bright-51c9 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.last-af50 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.frame-6ac7 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.frame-6ac7 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.frame-6ac7 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.frame-6ac7 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.accordion-focused-0c6b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.header-black-4945 {
    margin: 2rem 0;
}

.motion_104b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.motion_104b .heading-last-1180 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.popup_fluid_2227 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .popup_fluid_2227 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hero_last_9d96 {
    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);
}

.hero_last_9d96:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.chip-copper-3aa6 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.out-f69f {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.slider_white_8e67 {
    padding: var(--section-padding);
}

.small-f1eb {
    margin: 2rem 0;
}

.logo-3bcf {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .logo-3bcf {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .logo-3bcf {
        grid-template-columns: repeat(3, 1fr);
    }
}

.alert-52eb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.alert-52eb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.lower_ae4a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.mask-2138 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.avatar-purple-b7d8 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.avatar-purple-b7d8.logo_761e {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.highlight_out_281a {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.image_129c {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.detail-7e1a {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.label-north-cf44 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.element-lower-3a26 {
    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);
}

.element-lower-3a26 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.element-lower-3a26 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.list-62c1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.shadow_new_719d {
    margin: 2rem 0;
}

.slow-3228 {
    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) {
    .slow-3228 {
        flex-direction: column;
        gap: 1rem;
    }
}

.slow-3228:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.slow-3228::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);
}

.photo_65e9 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.notice-c942 {
    flex: 1;
}

.row_dfd3 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.lower_aee2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lower_aee2 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.popup-white-548f {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.cold-7633 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.aside_next_3414 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .aside_next_3414 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.container_5c2c {
    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);
}

.texture-dda4 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.glass-c5a8 {
    flex: 1;
}

.over_e042 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.background-f9af {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.hero_b926 {
    margin-top: 2rem;
    text-align: center;
}

.gas-bb5a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.gas-bb5a strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.caption-ede5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .caption-ede5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wide_49e6 {
    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);
}

.wide_49e6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.wide_49e6 .dynamic_65b9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.wide_49e6 .thick_ba81 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.wide_49e6 .accent-prev-b6c5 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.wide_49e6 .progress_last_9a1c {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.element-pro-39de {
    padding: var(--section-padding);
}

.panel-huge-8256 .avatar_simple_83b2 {
    flex: 1;
}

/* Promo Calendar Section */
.layout_old_a139 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.short-6b97 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .short-6b97 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mask-8c51 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.search-stone-7fd2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.picture-down-7215 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.green-5dd7 {
    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);
}

.carousel_9fe5 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.component_liquid_cb5d {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.sort_basic_10b2 {
    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);
}

.sort_basic_10b2 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.sort_basic_10b2 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.carousel_bb46 {
    padding: var(--section-padding);
}

.card-pressed-2963 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .card-pressed-2963 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hidden-down-a231 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.active-19f4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.inner_5d67 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inner_5d67 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.huge-175a {
    margin-top: 3rem;
}

.huge-175a .outline-bright-51c9 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.huge-175a .last-af50 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.huge-175a .frame-6ac7 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.huge-175a .frame-6ac7 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.huge-175a .frame-6ac7 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.huge-175a .frame-6ac7 li strong {
    color: var(--warning-color);
}

.hard_5be9 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.hard_5be9 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.dynamic_8068 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.shadow_stone_a4cb {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shadow_stone_a4cb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.message-d7ba {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.message-d7ba .heading-last-1180 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.hot-d19a {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.thumbnail_tiny_b7d6 {
    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);
}

.thumbnail_tiny_b7d6:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.tag-advanced-5a0d {
    font-size: 2rem;
    flex-shrink: 0;
}

.tag_hot_57cc {
    flex: 1;
}

.in-f9d1 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.dynamic_0d92 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.prev_2b4e {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.gradient_basic_6b87 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.breadcrumb-30a7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .breadcrumb-30a7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.content-47fd {
    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);
}

.content-47fd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.purple_e4ea {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.frame-old-d1a6 {
    color: var(--text-gray);
    font-size: 1rem;
}

.pink-4a52 {
    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);
}

.center-42d7 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.center-42d7 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.shadow_wood_7e9d { 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; }
.component-1e1d, .motion-3dc3 { max-width:100%; height:auto; }

.short_5f07, .motion_27e0, .sidebar_04b6 { white-space:normal; }

.item-fresh-ef3c,
.message-pro-16d2,
.badge_pink_de3c,
.caption-ede5,
.popup-7faa,
.element_easy_17d2 {
  flex-wrap:wrap;
}

[class*="grid"],
.breadcrumb-30a7,
.logo-3bcf,
.menu_complex_420d {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.picture_80b4 img,
.message-pro-16d2 img,
.layout_fd02 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.gold-9fb9, .purple-abb9,
.white-240c, .bright-505b {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.cold_ecff { width:100%; overflow-x:auto; }
.cold_ecff table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.picture-9b95 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .picture-9b95 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.current_e85f {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.container-up-df9a,
.fresh-2e2b,
.white_abfe,
.box_clean_cf9a,
.thumbnail_b626,
.breadcrumb-30a7,
.logo-3bcf,
.menu_complex_420d,
.preview_24cc,
.green-83a0,
.picture-9b95 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .container-up-df9a,
  .fresh-2e2b,
  .white_abfe,
  .box_clean_cf9a,
  .thumbnail_b626,
  .breadcrumb-30a7,
  .logo-3bcf,
  .menu_complex_420d,
  .preview_24cc,
  .green-83a0,
  .picture-9b95 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.dirty-ef8b,
.notification-orange-0394,
.content-47fd,
.accordion_7e3d,
.alert-52eb,
.hard-c25f,
.over_4b17,
.current_e85f {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.next-bee0,
.purple_4f35,
.component_36d8 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.next-bee0 > *,
.purple_4f35 > *,
.component_36d8 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: eab1 */
.shadow-element-s4 {
  padding: 0.4rem;
  font-size: 14px;
  line-height: 1.0;
}
