/* {$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;
}

.lower_d7b0 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.video_34cc {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .video_34cc {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .video_34cc {
        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 */
.column_f20e {
    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);
}

.motion_0c32 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .motion_0c32 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .hovered_b918 {
        grid-column: 1;
    }
    
    .surface-a60f {
        grid-column: 2;
    }
    
    .carousel_8e23 {
        grid-column: 3;
    }
}

.hovered_b918 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.hovered_b918:hover img {
    transform: scale(1.05);
}

/* Navigation */
.texture-thick-0306 {
    display: none;
}

@media (min-width: 1024px) {
    .texture-thick-0306 {
        display: block;
    }
}

/* Grouped Navigation */
.content_09a1 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.shadow-26e5 {
    position: relative;
}

.picture_outer_02d1 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.shadow-26e5 .large_7de1 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.large_7de1 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.item-brown-908e {
    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;
}

.item-brown-908e:hover,
.item-brown-908e.fn-active-f7df {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.frame_7fc8 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .frame_7fc8 {
        display: flex;
    }
}

/* Mobile Register Button */
.surface-a60f {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .surface-a60f {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.grid-96a9 {
    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;
}

.grid-96a9::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--primary-gradient);
    border-radius: inherit;
    z-index: -1;
    filter: blur(6px);
    opacity: 0.6;
    animation: mobilePulse 3s ease-in-out infinite;
}

@keyframes mobilePulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.03);
    }
}

/* Mobile Menu */
.carousel_8e23 {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

@media (min-width: 1024px) {
    .carousel_8e23 {
        display: none;
    }
}

.carousel_8e23 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.carousel_8e23.fn-active-f7df span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.carousel_8e23.fn-active-f7df span:nth-child(2) {
    opacity: 0;
}

.carousel_8e23.fn-active-f7df span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.blue-2b2c {
    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;
}

.blue-2b2c.fn-active-f7df {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.block-257b {
    overflow: hidden;
}

.picture-warm-08b0 {
    list-style: none;
    padding: 0.75rem 0;
}

.slow_11b5 {
    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;
}

.slow_11b5:hover,
.slow_11b5.fn-active-f7df {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.slow_11b5.logo-gold-63ef {
    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;
}

.slow_11b5.logo-gold-63ef::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 */
.sidebar_fbe6 {
    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;
}

.background-3dc6 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.background-3dc6:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.focus-e576 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.focus-e576:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.pro_be9f {
    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;
}

.pro_be9f:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.widget-aaf0 {
    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;
}

.paragraph-0421 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.paragraph-0421:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.new_bf5a {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.new_bf5a:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.old-866a {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.old-866a: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);
}

.label_orange_9408 {
    font-size: 1em;
    font-weight: 700;
}

.component-58a3 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.complex_0517 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.complex_0517::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;
}

.hidden-6df1 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .hidden-6df1 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.center-a795 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.overlay_bronze_1a21 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.pattern-liquid-018a {
    margin-bottom: 2rem;
}

.blue-b5aa {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .blue-b5aa {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tiny-fb7b {
    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);
}

.component-5148 {
    font-size: 1.5rem;
}

.hero_easy_686e {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.outline_6453 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.item_silver_1da4 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.item_silver_1da4:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.dirty-e5cb {
    text-align: center;
    margin-bottom: 3rem;
}

.photo-7c0f {
    margin-bottom: 1rem;
}

.row_5ce0 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.block_ba44 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .block_ba44 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .block_ba44.outline-4e80 {
        direction: rtl;
    }
    
    .block_ba44.outline-4e80 > * {
        direction: ltr;
    }
}

.full-021e {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.full-021e:first-child {
    margin-top: 0;
}

.message-8897 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.mini_e0b0 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.mini_e0b0:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.heading_4bff {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .heading_4bff {
        grid-template-columns: repeat(3, 1fr);
    }
}

.panel_a9c9 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.form-7c0e {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.gas-bca0 {
    list-style: none;
}

.gas-bca0 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gas-bca0 li:last-child {
    border-bottom: none;
}

/* Games Features */
.tertiary-bottom-74ec {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.thick_d845 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.column-liquid-d5bc {
    font-size: 2rem;
    flex-shrink: 0;
}

.sort-62ef {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.frame-8f21 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.tall-cf5c {
    margin: 2rem 0;
}

.gallery-pressed-b266 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.overlay-3a5d {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.chip_pressed_a56d {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.brown_8fef {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.old_ac14 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .old_ac14 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.title_9df9 {
    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);
}

.title_9df9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.icon-prev-014c {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.hover-1538 {
    font-size: 1.5rem;
}

.message_hard_3d0e {
    color: var(--accent-color);
    margin: 0;
}

.badge-wide-3ff6 {
    list-style: none;
}

.badge-wide-3ff6 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.badge-wide-3ff6 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.content-south-3fbe {
    margin: 2rem 0;
}

.avatar-23aa {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.form-dim-3f54 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .form-dim-3f54 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.next_6f4e {
    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);
}

.notice_0e37 {
    font-size: 1.25rem;
}

.column-white-2008 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.silver_5db9,
.component-f8c9 {
    text-align: center;
    margin: 2rem 0;
}

.accent_db22,
.shadow-dark-f560 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.clean-b979 {
    margin: 2rem 0;
    text-align: center;
}

.media_b624 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.media_b624::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;
}

.main_3094 {
    position: relative;
    z-index: 1;
}

.steel-6ed4 {
    margin-bottom: 1rem;
}

.element-f703 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.in_1d82 {
    margin-bottom: 3rem;
}

.card_f256 {
    margin-top: 3rem;
}

.icon-fdbd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .icon-fdbd {
        grid-template-columns: repeat(4, 1fr);
    }
}

.icon-fdbd .tiny-fb7b {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.notice_02e3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tiny_3f40 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.upper-7504 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.small-f730 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .small-f730 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .small-f730 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.highlight-motion-ada6 {
    margin-bottom: 1rem;
}

.hover_7883 img {
    margin-bottom: 1rem;
}

.overlay_red_e6eb {
    color: var(--text-gray);
    line-height: 1.6;
}

.status-steel-dce1 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.notification_4e9d {
    list-style: none;
}

.notification_4e9d li {
    margin-bottom: 0.5rem;
}

.notification_4e9d a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.notification_4e9d a:hover {
    color: var(--accent-color);
}

.bright_0e98 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.text_thick_4762 {
    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);
}

.text_thick_4762:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.texture-5961 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.texture-5961 p {
    margin-bottom: 0.25rem;
}

.smooth_aa20 {
    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) {
    .smooth_aa20 {
        flex-direction: row;
    }
}

.orange-8dee {
    text-align: center;
}

@media (min-width: 768px) {
    .orange-8dee {
        text-align: left;
    }
}

.orange-8dee p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.liquid_2924 {
    font-size: 0.75rem !important;
}

.header_last_beee {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.main_fresh_0d21 {
    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);
    }
}

.sort_a37b {
    animation: fadeInUp 0.6s ease-out;
}

.breadcrumb_d42a {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.panel_6874 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .panel_6874 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.item-hot-186b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .item-hot-186b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.primary_b7f5 {
    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);
}

.primary_b7f5 .column-liquid-d5bc {
    font-size: 1.25rem;
}

.primary_b7f5 .list_2188 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.detail_new_d401 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .detail_new_d401 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wide-6303 {
    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);
}

.wide-6303:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.upper-5a5b {
    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);
}

.notice-da8e {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.link-cool-77a5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.logo-medium-48e6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.main-rough-db6e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.main-rough-db6e .sort-62ef {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.main-rough-db6e .frame-8f21 {
    color: var(--text-gray);
    line-height: 1.6;
}

.left-20e7 {
    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);
}

.red_3ad3 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.red_3ad3 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.red_3ad3 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.pattern_ec40 {
    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);
}

.tag-522b {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mask_7c95 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mask_7c95 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.mask_7c95 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);
}

.mask_7c95 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.mask_7c95 input::placeholder {
    color: var(--text-muted);
}

.footer-12ee {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.bronze-9c47 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.bronze-9c47 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.frame-8ccb {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.frame-8ccb:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.form-dim-3f54 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .form-dim-3f54 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.next_6f4e {
    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);
}

.next_6f4e .notice_0e37 {
    font-size: 1.25rem;
}

.next_6f4e .column-white-2008 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.search_8a73 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pattern_6e16 {
    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);
}

.pattern_6e16 .column-liquid-d5bc {
    font-size: 2rem;
    flex-shrink: 0;
}

.pattern_6e16 .sort-62ef {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.pattern_6e16 .frame-8f21 {
    color: var(--text-gray);
    line-height: 1.6;
}

.cold_c59c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.over_7db5 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.over_7db5 .texture-28cd {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.over_7db5 .down_fdb5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.disabled-fast-2197 {
    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);
}

.main_white_a9d0 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .main_white_a9d0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.detail-731d {
    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);
}

.detail-731d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.south-0bb1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.mini-31b0 {
    flex: 1;
}

.hover_gas_af3a {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.surface_stale_c524 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.huge_062c {
    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);
}

.huge_062c:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.pressed-4bad {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pressed-4bad {
        grid-template-columns: repeat(4, 1fr);
    }
}

.old-7fc1 {
    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);
}

.old-7fc1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.frame_stone_3a3f {
    font-size: 2rem;
    flex-shrink: 0;
}

.grid_red_9c8e {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.slider-2bb3 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.progress_35e6 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.notification_6ba2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.component-4a58 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.notification_d942 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.notification_d942 .pressed_527a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.notification_d942 .cold-c3f2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.pattern-bab5 {
    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);
}

.tooltip_c3b7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.picture-center-2de1 {
    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);
}

.picture-center-2de1 .column-liquid-d5bc {
    font-size: 2rem;
    flex-shrink: 0;
}

.picture-center-2de1 .sort-62ef {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.picture-center-2de1 .frame-8f21 {
    color: var(--text-gray);
    line-height: 1.6;
}

.shade-glass-7645 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shade-glass-7645 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.orange-1ca1 {
    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);
}

.orange-1ca1:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.surface-lower-d17b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .surface-lower-d17b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.row-out-5298 {
    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);
}

.row-out-5298:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.video_dark_8888 {
    font-size: 2rem;
    flex-shrink: 0;
}

.content_action_fe4d {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.overlay-3a5d {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.summary_east_8a75 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.right-01d6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.container_bright_4fcb {
    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);
}

.container_bright_4fcb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hard_10d1 {
    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);
}

.hard-50d3 {
    flex: 1;
}

.pressed-4fec {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.background-short-2526 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.hovered-8a87 {
    color: var(--text-gray);
    line-height: 1.6;
}

.accent_outer_afad {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.accordion-1994 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.accordion-1994 .texture-28cd {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.accordion-1994 .down_fdb5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.component-f8c9 {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.search-3b6c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .search-3b6c {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.block-4d2d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .block-4d2d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.text-lite-c195 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.text-lite-c195:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.blue_6ad5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hero-e838 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.brown_3b96 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.texture-wide-6f8a {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.content-3c88 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.iron_29df {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.focus_44b8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.photo-96d4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.footer_a5b3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tooltip_c3b7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.picture-center-2de1 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.picture-center-2de1 .sort-62ef {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.picture-center-2de1 .frame-8f21 {
    color: var(--text-gray);
    line-height: 1.6;
}

.overlay_medium_3fb1 {
    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);
}

.notification_under_539f {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .notification_under_539f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .notification_under_539f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cold-0a0e {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.cold-0a0e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.white-61a6 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.feature_plasma_238b {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.logo_lower_1c03 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.banner_soft_5700 {
    padding: 1.5rem;
}

.focus-cb9f {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.sort-tiny-4039 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sort-tiny-4039 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;
}

.sort-tiny-4039 li:last-child {
    border-bottom: none;
}

.sort-tiny-4039 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.caption-left-c03e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .caption-left-c03e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.block_b841 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.block_b841:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.shadow-soft-d371 {
    font-size: 2rem;
    flex-shrink: 0;
}

.brown-f0d5 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.narrow-00a4 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.outline-hovered-4582 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.out-5369 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.in_0e57 {
    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);
}

.first-1527 {
    font-size: 2rem;
    flex-shrink: 0;
}

.lite_72b2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.old_9f24 {
    color: var(--text-gray);
    line-height: 1.6;
}

.input-blue-20b7 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.grid-steel-aaaf {
    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);
}

.right_e807 {
    text-align: center;
}

.fresh-7b95 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tall_2980 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.secondary_e0b6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.title-82de {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.title-82de .sort-62ef {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.title-82de .frame-8f21 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hero-d665 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .hero-d665 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-d665 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.box-781c {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.box-781c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.icon-3edc {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.lite_3bca {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.sort-62ef {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.nav-826f {
    padding: 1.5rem;
}

.frame-8f21 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.short-6d11 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.short-6d11 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;
}

.short-6d11 li:last-child {
    border-bottom: none;
}

.short-6d11 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.rough-d91a {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.gallery-1895 {
    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);
}

.gallery-1895:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.notice_3bb3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gold-e561 {
    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);
}

.upper-5a5b {
    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;
}

.notice-da8e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.link-cool-77a5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tag_large_5109 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.backdrop_8f7a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.filter_yellow_11c0 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.nav-3c08 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.button_9ece {
    display: flex;
    gap: 1rem;
}

.button_9ece .fresh-bb30 {
    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;
}

.panel_ecdc {
    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);
}

.pattern_f0a9 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.south_a308 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.south_a308 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;
}

.south_a308 li:last-child {
    border-bottom: none;
}

.south_a308 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.red-641b {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .red-641b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .red-641b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.icon-hot-9afa {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.icon-hot-9afa:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.fast_9f9a {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.disabled_stale_8aac {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.pressed_527a {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.red-09c5 {
    font-size: 1rem;
}

.selected-a0c8 {
    padding: 1.5rem;
}

.cold-c3f2 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.pink-bbe6 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.pink-bbe6 .right_e807 {
    text-align: center;
}

.pink-bbe6 .tall_2980 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.pink-bbe6 .progress-gas-0519 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.module_e339 {
    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);
}

.module_e339:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.video-faf6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .video-faf6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.widget_medium_4244 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.widget_medium_4244:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.row_north_81f5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pagination-6dba {
    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);
}

.video_clean_702e {
    font-size: 2rem;
    flex-shrink: 0;
}

.action_b0ad {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.focus-slow-b0c5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.full_ffb8 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.paragraph-b60f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.grid_be87 {
    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);
}

.banner-7b0c {
    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;
}

.banner-7b0c.container-2f89 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.banner-7b0c.header-up-4a23 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.banner-7b0c.advanced_5673 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.banner-7b0c.highlight-soft-0ed7 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.banner-7b0c.button-699f {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.feature_28f3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.background-74e9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.gallery_easy_b8cf {
    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);
}

.center_d6a1 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.cold_c59c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cold_c59c 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;
}

.cold_c59c li:last-child {
    border-bottom: none;
}

.cold_c59c li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.element-brown-a978 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .element-brown-a978 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .element-brown-a978 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wrapper-cf46 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.wrapper-cf46:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.wrapper-cf46.tabs-64bb {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .wrapper-cf46.tabs-64bb {
        grid-column: span 3;
    }
}

.old_788c {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.wrapper-cf46.tabs-64bb .old_788c {
    background: rgba(6, 182, 212, 0.1);
}

.large_6deb {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.aside-395d {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.wrapper-cf46.tabs-64bb .aside-395d {
    color: var(--info-color);
}

.progress_37b4 {
    padding: 1.5rem;
    text-align: center;
}

.article_current_0637 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.wrapper-cf46.tabs-64bb .article_current_0637 {
    color: var(--info-color);
}

.carousel-mini-9085 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.motion-8605 {
    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 */
.dark-626f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .dark-626f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.down-c5ed {
    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);
}

.down-c5ed:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.form_warm_fe58 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pattern_6e16 {
    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);
}

.notice_0e37 {
    font-size: 2rem;
    flex-shrink: 0;
}

.chip_hovered_5b01 {
    flex: 1;
}

.avatar-23aa {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.dropdown_65df {
    color: var(--text-gray);
    line-height: 1.6;
}

.status_brown_da48 {
    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);
}

.green-c089 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.texture_up_372d {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.main_fresh_0d21 {
    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);
}

.pagination_over_2cf6 {
  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);
}

.pagination_over_2cf6 .right_e807 {
    text-align: center;
}

.pagination_over_2cf6 .fresh-7b95 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.pagination_over_2cf6 .tall_2980 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.title-e1ac {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.alert_over_2d90 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.form-south-0050 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.logo-upper-819e {
    color: var(--text-gray);
    line-height: 1.6;
}

.pattern-copper-71f8 {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.short_0f47 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.content_b0ef {
    color: var(--text-gray);
    line-height: 1.6;
}

.dark_5da3 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .dark_5da3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .dark_5da3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.section-bright-95a0 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.section-bright-95a0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.progress-7486 {
    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);
}

.first-7844 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.outline-21f0 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.element_a344 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.element_a344.nav-next-7edf {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.element_a344.stale-1509 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.element_a344.pink-f443 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.mini_d6cf {
    padding: 1.5rem;
    text-align: center;
}

.next_a4ab {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.title_73ed {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.title_73ed .up-9fc5 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.clean-1372 {
    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);
}

.clean-1372:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.backdrop-fc47 {
  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);
}

.filter_stale_6fb4 {
    text-align: center;
}

.filter_stale_6fb4 .fresh-7b95 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.filter_stale_6fb4 .tall_2980 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.large_9c85 { text-align: center; }
.alert-daef { text-align: left; }
.logo-5c49 { text-align: right; }

.cool-df4e { margin-bottom: 0; }
.action-3a99 { margin-bottom: 0.5rem; }
.hot_5f2f { margin-bottom: 1rem; }
.column_complex_79a2 { margin-bottom: 1.5rem; }
.cold_f1fd { margin-bottom: 2rem; }

.video_first_1a51 { margin-top: 0; }
.tiny_c68c { margin-top: 0.5rem; }
.left-8d1a { margin-top: 1rem; }
.red-569e { margin-top: 1.5rem; }
.bottom-886b { margin-top: 2rem; }

.fn-hidden-f7df { display: none; }
.fn-visible-f7df { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .complex_0517 {
        padding: 6rem 0 3rem;
    }
    
    .hidden-6df1 {
        text-align: center;
    }
    
    .block_ba44 {
        text-align: center;
    }
    
    .blue-b5aa {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .column_f20e,
    .blue-2b2c,
    .media_b624,
    .upper-7504 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .complex_0517 {
        background: none;
    }
}

/* Providers Section */
.north-9016 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tiny-897a {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tiny-897a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tiny-897a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.highlight_ef07 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.highlight_ef07:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.fresh_c15f {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.overlay-ff0e {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hover_complex_854f {
    list-style: none;
    padding: 0;
}

.hover_complex_854f li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.hover_complex_854f li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.carousel-wood-84cb {
    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);
}

.carousel-wood-84cb p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.shade_fe50 {
    padding: var(--section-padding);
}

.carousel_tiny_a643 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .carousel_tiny_a643 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.image_cddc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.image_cddc:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.liquid_2dfb {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.preview_brown_32e1 {
    display: flex;
    flex-direction: column;
}

.simple_55be {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.button_upper_aa86 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.south-e730 {
    color: var(--accent-color);
}

.highlight_2dba {
    font-size: 1.25rem;
}

.clean_bad6 {
    margin-bottom: 1rem;
}

.clean_bad6 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.block-fluid-457a {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.status_8ed0 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.right_e807 {
    text-align: center;
}

.fresh-7b95 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tall_2980 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.stone_5574 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.outer_b83d {
    margin: 2rem 0;
}

.item_5a9d {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.item_5a9d .column-liquid-d5bc {
    font-size: 2rem;
    flex-shrink: 0;
}

.avatar_a087 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.list_a3e5 {
    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;
}

.list_a3e5:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.menu-brown-1e7f {
    font-size: 2rem;
}

.inner-cf84 {
    display: flex;
    flex-direction: column;
}

.highlight_new_a3d1 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.tiny_f51d {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.info-4783 {
    padding: var(--section-padding);
}

.hero-hovered-ba4b {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .hero-hovered-ba4b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-hovered-ba4b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.easy_48bd {
    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);
}

.easy_48bd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.easy_48bd .fresh-7b95 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.easy_48bd .tall_2980 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.easy_48bd .layout-31cb {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.pagination_a51c {
    margin-top: 4rem;
}

.hovered_0d2b {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.pressed_52bd {
    overflow-x: auto;
}

.liquid-615e {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.liquid-615e thead {
    background: var(--accent-color);
}

.liquid-615e th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.liquid-615e td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.liquid-615e tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.liquid-615e tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.input-d43f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.image-968f {
    max-width: 900px;
    margin: 0 auto;
}

.banner-8b63 {
    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);
}

.banner-8b63:hover {
    border-color: var(--accent-color);
}

.first_7e3a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.first_7e3a h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.carousel_c9ed {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.banner-8b63.fn-active-f7df .carousel_c9ed {
    transform: rotate(45deg);
}

.module-dirty-5c48 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.banner-8b63.fn-active-f7df .module-dirty-5c48 {
    max-height: 1000px;
}

.module-dirty-5c48 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.notice-bac7 {
    padding: var(--section-padding);
}

.red_3ad3 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.block_glass_d3c1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pagination-e649 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pagination-e649 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.slider-6cfc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.main-motion-9133 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.bottom-2ae3 {
    font-size: 2rem;
}

.chip_selected_5149 {
    color: var(--text-white);
    margin: 0;
}

.article-368a {
    list-style: none;
    padding: 0;
}

.article-368a li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.article-368a li:last-child {
    border-bottom: none;
}

.notice_rough_c4d3 {
    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);
}

.notice_rough_c4d3 p {
    color: var(--success-color);
    margin: 0;
}

.feature-037d {
    margin-top: 3rem;
}

.pattern_f0a9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.footer_bottom_10ca {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .footer_bottom_10ca {
        grid-template-columns: repeat(2, 1fr);
    }
}

.slow-b5b6 {
    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);
}

.accent-d91c {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.slow-b5b6 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.smooth-bcca {
    padding: var(--section-padding);
}

.dropdown_next_88bf {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dropdown_next_88bf {
        grid-template-columns: repeat(3, 1fr);
    }
}

.focus-da69 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.focus-da69:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.title-silver-6db8 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.paper-5144 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.accordion-red-48ec {
    flex: 1;
}

.paper-85f6 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.background_8fd4 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.layout-e94a {
    color: var(--text-gray);
    line-height: 1.6;
}

.feature-c85c {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-c85c:last-child {
    border-bottom: none;
}

/* Comparison Section */
.menu-7f8f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.sidebar_simple_aeb4 {
    padding: var(--section-padding);
}

.under-3772 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.caption-wood-5d73 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .caption-wood-5d73 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fluid_fac0 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outline-4c9e, .summary_6590, .content_advanced_1967 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.content_advanced_1967 {
    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 */
.container-warm-2cc6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.banner_5823 {
    margin: 2rem 0;
}

.medium-a160 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.cool_a678 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.white_a2f5 {
    list-style: none;
    padding: 0;
}

.white_a2f5 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;
}

.white_a2f5 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.white_a2f5 li:last-child {
    border-bottom: none;
}

.blue_45fe {
    text-align: center;
    margin-top: 2rem;
}

.button-c80b {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.narrow_3be0 {
    padding: var(--section-padding);
}

.active_5e9a {
    margin: 2rem 0;
}

.tag-orange-09e0 {
    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) {
    .tag-orange-09e0 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.tag-orange-09e0:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.pagination_5ec0 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.grid_medium_7ac1 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.main-simple-ae3b {
    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;
}

.easy-09b5 {
    flex: 1;
}

.pink_f2b9 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.steel_be66 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.out_3f5a {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.photo_pink_6a76 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .photo_pink_6a76 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.item-short-8660 {
    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);
}

.item-short-8660:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.item-short-8660 .fresh-7b95 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.item-short-8660 .tall_2980 {
    color: var(--text-gray);
    font-size: 1rem;
}

.current_bd23 {
    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);
}

.short-015e {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.short-015e strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.image_1d51 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .image_1d51 {
        grid-template-columns: 1fr 1fr;
    }
}

.card_8f73 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.disabled-fresh-adda {
    margin-bottom: 1.5rem;
}

.disabled-fresh-adda label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.disabled-fresh-adda input,
.disabled-fresh-adda 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;
}

.disabled-fresh-adda input:focus,
.disabled-fresh-adda select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.gallery_plasma_4971 {
    width: 100%;
    margin-top: 1rem;
}

.under_b5b8 {
    display: flex;
    align-items: center;
}

.title_2013 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.soft-6b42 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.search_smooth_b54a {
    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;
}

.image-clean-1f8d {
    color: var(--text-gray);
}

.short-3d1f {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.action_a116 {
    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);
}

.action_a116 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.primary_left_8287 {
    margin-top: 3rem;
}

.soft-ca07 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.accent-purple-8059 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.outer-db12 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.label_full_46e4 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.label_full_46e4:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.popup_upper_9687 {
    padding: var(--section-padding);
}

.paragraph-action-713d {
    margin: 2rem 0;
}

.fixed-e3ad {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.fresh_404c {
    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;
}

.fresh_404c:hover, .fresh_404c.fn-active-f7df {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.last_df88 {
    display: none;
}

.last_df88.fn-active-f7df {
    display: block;
}

.panel-fixed-9f9a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.element_stale_2fb3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.mini_5043 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.mini_5043 ul {
    list-style: none;
    padding: 0;
}

.mini_5043 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.mini_5043 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.button_outer_a0fb {
    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 */
.mask-fceb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.image_pro_aa5b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.article_d98f {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.bronze-7a87 {
    color: var(--accent-color);
    margin: 0;
}

.lower_9e77 {
    display: flex;
    gap: 1.5rem;
}

.detail_dbdb {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.gallery-daf1 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.mask_93c8 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.mask_93c8.article-cold-fd93 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.mask_93c8.layout-a436 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.mask_93c8.thumbnail_9b86 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.progress-a1a8 {
    margin-top: 2rem;
}

.detail-copper-1292 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.notification-rough-22c0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .notification-rough-22c0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.label_prev_f178 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.input_wood_da3a {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.rough-a347 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.container-small-a59e {
    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 */
.search-249a {
    padding: var(--section-padding);
}

.main_soft_cce5 {
    margin: 2rem 0;
}

.motion_dda3 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.title-aad8 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.breadcrumb-outer-0794 {
    list-style: none;
    padding: 0;
}

.breadcrumb-outer-0794 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;
}

.breadcrumb-outer-0794 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.breadcrumb-outer-0794 li:last-child {
    border-bottom: none;
}

.white_5c05 {
    margin: 2rem 0;
}

.motion-b4f3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.out_b160 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .out_b160 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tabs-under-80f7 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.advanced_0544 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.modal-4ec0 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.hidden_a68e {
    margin-top: 2rem;
}

.hover_gas_af3a {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.message_d70e {
    list-style: none;
    padding: 0;
}

.disabled-d3af {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.disabled-d3af a {
    color: var(--accent-color);
    text-decoration: none;
}

.disabled-d3af a:hover {
    text-decoration: underline;
}

.active_fa85 {
    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 */
.pro-c790 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.under-af91 {
    margin: 2rem 0;
}

.wrapper_0e56 {
    margin-bottom: 3rem;
}

.wrapper_0e56 .cool_a678 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.action_09d3 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.progress-silver-9043 {
    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);
}

.progress-silver-9043:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.icon_c662 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .icon_c662 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-copper-0db5 {
    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 */
.link_b0e7 {
    padding: var(--section-padding);
}

.breadcrumb_9249 {
    margin: 2rem 0;
}

.border_4976 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.tooltip_left_0687 {
    overflow-x: auto;
    margin: 2rem 0;
}

.header_stale_141e {
    background: rgba(6, 182, 212, 0.1) !important;
}

.photo-pro-af01 {
    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;
}

.media_mini_a282 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.paragraph_34ca {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .paragraph_34ca {
        grid-template-columns: repeat(3, 1fr);
    }
}

.full-c006 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.full-c006 .column-liquid-d5bc {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.full-c006 .sort-62ef {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.picture_small_0700 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.form-a1ae {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.slider_dim_25cc {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .slider_dim_25cc {
        grid-template-columns: repeat(3, 1fr);
    }
}

.light-1e41 {
    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;
}

.light-1e41:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.dropdown_clean_f923 {
    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);
}

.progress-ebd3 {
    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;
}

.next-adca {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.widget_basic_3fb5 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.pro-48a3 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.menu_lower_1b7c {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.active_advanced_60cd {
    color: var(--text-white);
    font-weight: 600;
}

.background_center_36c1 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.dropdown_e470 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown_e470 .fresh-bb30 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.element-1d80 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .element-1d80 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.summary-pressed-cc87 {
    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);
}

.summary-pressed-cc87:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.summary-pressed-cc87 .fresh-7b95 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.summary-pressed-cc87 .tall_2980 {
    color: var(--text-gray);
    font-size: 1rem;
}

.logo-071d {
    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);
}

.box-fresh-25ab {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.box-fresh-25ab strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.content-3c88 {
    margin: 2rem 0;
}

.iron_29df {
    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);
}

.iron_29df:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.focus_44b8 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.notification_lite_c366 {
    flex: 1;
}

.photo-96d4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.footer_a5b3 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.tooltip_c3b7 {
    margin: 2rem 0;
}

.picture-center-2de1 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.picture-center-2de1 .sort-62ef {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.picture-center-2de1 .frame-8f21 {
    color: var(--text-gray);
    margin: 0;
}

.overlay_medium_3fb1 {
    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);
}

.overlay_medium_3fb1 .accent_db22 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.picture_small_0700 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.hard_10d1 {
    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;
}

.hard-50d3 {
    flex: 1;
}

.background-short-2526 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.hovered-8a87 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.upper-5a5b {
    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;
}

.content-bright-d986 {
    flex: 1;
}

.notice-da8e {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.link-cool-77a5 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.filter_yellow_11c0 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.nav-3c08 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.button_9ece {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.button_9ece .fresh-bb30 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.panel_ecdc {
    margin-top: 2rem;
}

.panel_ecdc .pattern_f0a9 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.hero_0acb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.grid-steel-aaaf {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .grid-steel-aaaf {
        grid-template-columns: repeat(4, 1fr);
    }
}

.grid-steel-aaaf .right_e807 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.secondary_e0b6 {
    margin: 2rem 0;
}

.title-82de {
    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 */
.block_bronze_3780 {
    padding: var(--section-padding);
}

.nav-826f {
    margin-top: 1rem;
}

.short-6d11 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.short-6d11 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.short-6d11 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.red-b079 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tertiary-bronze-c11c {
    margin: 2rem 0;
}

.badge-df5d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.image-easy-2b20 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.panel_small_0523 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.column-c847 {
    margin: 2rem 0;
}

.caption_e4d7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.caption_e4d7 .cool_a678 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.slider-8756 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .slider-8756 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hidden-2432 {
    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);
}

.preview_brown_c310 {
    color: var(--text-white);
    font-weight: 600;
}

.notification-fixed-2165 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.shade_narrow_adb6 {
    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);
}

.shade_narrow_adb6 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.input-lower-76a2 {
    padding: var(--section-padding);
}

.icon-blue-a4b1 {
    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;
}

.icon-blue-a4b1:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.overlay-light-f31f {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.overlay-light-f31f .accent-d91c {
    font-size: 2rem;
    flex-shrink: 0;
}

.overlay-light-f31f .tabs-a4bf {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.east-f294 {
    flex: 1;
}

.hot_20b0 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.pattern_bronze_2a52 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pattern_bronze_2a52 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.pattern_bronze_2a52 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.section_d4cb {
    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);
}

.section_d4cb p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.section_d4cb strong {
    color: var(--warning-color);
}

/* Slots Section */
.surface_last_14c0 {
    padding: var(--section-padding);
}

.notification_6ba2 {
    margin: 2rem 0;
}

/* Table Games Section */
.panel-small-1ffa {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.component-4a58 {
    margin: 2rem 0;
}

.notification_d942 {
    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);
}

.notification_d942:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.notification_d942 .pressed_527a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.notification_d942 .cold-c3f2 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.pattern-bab5 {
    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);
}

.pattern-bab5 .accent_db22 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.thumbnail_dark_3eef {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.detail_fc7c {
    margin: 2rem 0;
}

.east_c9cb {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.next-bc1c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.content_1277 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.solid-199a {
    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);
}

.solid-199a:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.solid-199a.fn-active-f7df {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.aside-1e14 {
    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);
}

.center-d838 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.center-d838 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.active_west_ddb2 {
    padding: var(--section-padding);
}

.background-c273 {
    margin: 2rem 0;
}

.under-4f07 {
    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);
}

.under-4f07:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .under-4f07 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.rough-992d {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.popup_solid_cb33 {
    flex: 1;
}

.list-6e82 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.tall_a18a {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.grid-89f5 {
    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;
}

.highlight_lower_7f3b {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.sort_dirty_412d {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.focused_c8d6 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.sidebar-upper-035b {
    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;
}

.sidebar-upper-035b:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.dirty_b246 {
    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);
}

.status_aa84 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.status_aa84 strong {
    color: var(--accent-color);
}

/* New Games Section */
.filter_e125 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.texture_4eb6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .texture_4eb6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .texture_4eb6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sidebar_1b64 {
    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;
}

.sidebar_1b64:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.iron-0ad4 {
    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;
}

.label-rough-8655 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.picture-1ef2 {
    font-size: 2rem;
}

.lite_b55e {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.full_598e {
    flex: 1;
}

.input-c609 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.shadow-f5be {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.up-bee5 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.soft_7b78 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.component_7681 {
    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;
}

.block_2629 {
    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;
}

.block_2629:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.nav-rough-2025 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.preview_narrow_fb4f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.highlight_hovered_bb62 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .highlight_hovered_bb62 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.layout-tall-143e {
    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);
}

.sidebar_dc6b {
    color: var(--text-white);
    font-weight: 600;
}

.brown-12a7 {
    color: var(--accent-color);
    font-weight: 600;
}

.backdrop-5ad6 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.backdrop-5ad6 strong {
    color: var(--accent-color);
}

/* Security Section */
.silver_3a7f {
    padding: var(--section-padding);
}

/* Benefits Section */
.slider-7b20 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.current-b66b {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.huge_8b30 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.disabled_copper_0caa {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.filter-a80f {
    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) {
    .filter-a80f {
        flex-direction: column;
        gap: 1rem;
    }
}

.filter-a80f:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.filter-a80f .upper-5a5b {
    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;
}

.filter-a80f .content-bright-d986 {
    flex: 1;
}

.filter-a80f .notice-da8e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.filter-a80f .link-cool-77a5 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.detail-9b34 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.detail-9b34 .avatar-23aa {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.detail-9b34 .search_8a73 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-9b34 .search_8a73 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.detail-9b34 .search_8a73 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.accordion-glass-4647 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.title-68bd {
    padding: var(--section-padding);
}

.filter_eeee {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .filter_eeee {
        grid-template-columns: repeat(3, 1fr);
    }
}

.article-fbf3 {
    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);
}

.article-fbf3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.article-fbf3 .large-6d3e {
    font-size: 2rem;
    flex-shrink: 0;
}

.article-fbf3 .first-f966 {
    flex: 1;
}

.article-fbf3 .texture-28cd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.article-fbf3 .static-6e61 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.fixed_9f37 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.fixed_9f37 .component-5cf4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.fixed_9f37 .texture_bottom_a15d {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.fixed_9f37 .texture_bottom_a15d 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);
}

.fixed_9f37 .texture_bottom_a15d li:last-child {
    border-bottom: none;
}

.fixed_9f37 .texture_bottom_a15d 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;
}

.fixed_9f37 .texture_bottom_a15d li strong {
    color: var(--text-white);
}

.prev-9289 {
    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);
}

.prev-9289 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.prev-9289 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.blue_7ede {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.content-77d4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .content-77d4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.button_first_9d76 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.button_first_9d76:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.hero_north_5c8d {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.element_full_2ec7 {
    font-size: 2rem;
}

.preview_bright_3fc6 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.alert-bottom-5dad {
    flex: 1;
}

.video-hovered-f8da {
    list-style: none;
    padding: 0;
    margin: 0;
}

.video-hovered-f8da li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.video-hovered-f8da li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.backdrop_down_d856 {
    margin-top: 3rem;
}

.motion_dda3 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.title-aad8 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.breadcrumb-outer-0794 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-outer-0794 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.breadcrumb-outer-0794 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.breadcrumb-outer-0794 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.tag_liquid_a426 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.backdrop-motion-3c26 {
    margin: 2rem 0;
}

.feature_0326 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.feature_0326 .cool_a678 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.fast-1447 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .fast-1447 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.container_brown_fcce {
    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);
}

.container_brown_fcce:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.heading_7555 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.paper-73a7 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.list-wide-1355 {
    padding: var(--section-padding);
}

.icon_pro_13e2 {
    margin: 2rem 0;
}

.wide-79e6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .wide-79e6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .wide-79e6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wrapper_b28a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.wrapper_b28a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.frame_1c52 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.liquid-e343 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.slider_brown_8f20 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.slider_brown_8f20.popup_first_9428 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.thick-50e9 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.article-8734 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.link_2570 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.notice-steel-93a3 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.main-dark-7cc8 {
    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);
}

.main-dark-7cc8 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.main-dark-7cc8 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.detail-large-6f1e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.sort_complex_db3b {
    margin: 2rem 0;
}

.layout_fast_6e2b {
    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) {
    .layout_fast_6e2b {
        flex-direction: column;
        gap: 1rem;
    }
}

.layout_fast_6e2b:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.layout_fast_6e2b::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);
}

.picture_gold_1720 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.west-1ed7 {
    flex: 1;
}

.column_over_9470 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.selected-b21e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.selected-b21e li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.photo_bce2 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.row-bd93 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.in-c126 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .in-c126 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.info_advanced_c68d {
    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);
}

.aside-dirty-3b2e {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.row-short-d15f {
    flex: 1;
}

.notification_bcae {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.shade_370f {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.highlight_0534 {
    margin-top: 2rem;
    text-align: center;
}

.simple_79ef {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.simple_79ef strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.video-faf6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .video-faf6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.widget_medium_4244 {
    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);
}

.widget_medium_4244:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.widget_medium_4244 .shadow-soft-d371 {
    font-size: 2rem;
    flex-shrink: 0;
}

.widget_medium_4244 .brown-f0d5 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.widget_medium_4244 .narrow-00a4 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.widget_medium_4244 .outline-hovered-4582 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.summary-easy-7f63 {
    padding: var(--section-padding);
}

.pagination-6dba .aside_8d55 {
    flex: 1;
}

/* Promo Calendar Section */
.advanced_0099 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.overlay_318e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .overlay_318e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.border_rough_b60a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gallery_0d8d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.gradient_gas_dac4 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.container_fast_5240 {
    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);
}

.item_9b49 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.row-b366 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.down-0f5b {
    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);
}

.down-0f5b p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.down-0f5b strong {
    color: var(--accent-color);
}

/* Requirements Section */
.thumbnail_hovered_3b29 {
    padding: var(--section-padding);
}

.banner_bottom_7b42 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .banner_bottom_7b42 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hot-68de {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.article-8a5b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.mini_f883 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mini_f883 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.grid_bright_ad91 {
    margin-top: 3rem;
}

.grid_bright_ad91 .motion_dda3 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.grid_bright_ad91 .title-aad8 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.grid_bright_ad91 .breadcrumb-outer-0794 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.grid_bright_ad91 .breadcrumb-outer-0794 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.grid_bright_ad91 .breadcrumb-outer-0794 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.grid_bright_ad91 .breadcrumb-outer-0794 li strong {
    color: var(--warning-color);
}

.slider-left-5d64 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.slider-left-5d64 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.widget-outer-0195 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.accordion_91fe {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accordion_91fe {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-e6d5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gallery-e6d5 .cool_a678 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.label-199a {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.disabled_lite_5b32 {
    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);
}

.disabled_lite_5b32:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.block_hard_471a {
    font-size: 2rem;
    flex-shrink: 0;
}

.hidden-smooth-3f7b {
    flex: 1;
}

.glass-7c71 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.element-stone-5643 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.gradient-fast-5ee1 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.highlight_96dc {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.outline_7544 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .outline_7544 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.layout-steel-445f {
    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);
}

.layout-steel-445f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.cool_7513 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.highlight_2e5d {
    color: var(--text-gray);
    font-size: 1rem;
}

.short-015e {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.motion_b2db {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.motion_b2db strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.video_34cc { 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; }
.item_silver_1da4, .mini_e0b0 { max-width:100%; height:auto; }

.sidebar_fbe6, .pro_be9f, .widget-aaf0 { white-space:normal; }

.hidden-6df1,
.block_ba44,
.dark-626f,
.video-faf6,
.tooltip_c3b7,
.dark_5da3 {
  flex-wrap:wrap;
}

[class*="grid"],
.outline_7544,
.wide-79e6,
.icon-fdbd {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.complex_0517 img,
.block_ba44 img,
.outline_6453 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.center-a795, .overlay_bronze_1a21,
.photo-7c0f, .row_5ce0 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.pressed_52bd { width:100%; overflow-x:auto; }
.pressed_52bd table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.tiny-897a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .tiny-897a {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.highlight_ef07 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.hero-hovered-ba4b,
.dark-e7f5,
.wood_e742,
.logo_fd43,
.photo_pink_6a76,
.outline_7544,
.wide-79e6,
.icon-fdbd,
.backdrop-fc47,
.background-c273,
.tiny-897a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .hero-hovered-ba4b,
  .dark-e7f5,
  .wood_e742,
  .logo_fd43,
  .photo_pink_6a76,
  .outline_7544,
  .wide-79e6,
  .icon-fdbd,
  .backdrop-fc47,
  .background-c273,
  .tiny-897a {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.easy_48bd,
.item-short-8660,
.layout-steel-445f,
.tiny-fb7b,
.wrapper_b28a,
.filter_stale_6fb4,
.under-4f07,
.highlight_ef07 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.rough_e25a,
.out-5c05,
.bronze-7be8 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.rough_e25a > *,
.out-5c05 > *,
.bronze-7be8 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: bd74 */
.promo-block-w0 {
  padding: 0.5rem;
  font-size: 10px;
  line-height: 1.3;
}
