/* {$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;
}

.title_hard_226f {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.hidden_bd63 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .hidden_bd63 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hidden_bd63 {
        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 */
.badge-13bd {
    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);
}

.next_f8a8 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .next_f8a8 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .pattern-10ad {
        grid-column: 1;
    }
    
    .card-tiny-5f8b {
        grid-column: 2;
    }
    
    .wood-6e70 {
        grid-column: 3;
    }
}

.pattern-10ad img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.pattern-10ad:hover img {
    transform: scale(1.05);
}

/* Navigation */
.advanced_f695 {
    display: none;
}

@media (min-width: 1024px) {
    .advanced_f695 {
        display: block;
    }
}

/* Grouped Navigation */
.gallery_6220 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.bright_1d71 {
    position: relative;
}

.panel-fluid-9d46 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.bright_1d71 .form-small-ad35 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.form-small-ad35 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.header_copper_91bd {
    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;
}

.header_copper_91bd:hover,
.header_copper_91bd.fn-active-1955 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.banner_e599 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .banner_e599 {
        display: flex;
    }
}

/* Mobile Register Button */
.card-tiny-5f8b {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .card-tiny-5f8b {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.pressed_96c9 {
    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;
}

.pressed_96c9::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 */
.wood-6e70 {
    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) {
    .wood-6e70 {
        display: none;
    }
}

.wood-6e70 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.wood-6e70.fn-active-1955 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.wood-6e70.fn-active-1955 span:nth-child(2) {
    opacity: 0;
}

.wood-6e70.fn-active-1955 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.element-green-793d {
    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;
}

.element-green-793d.fn-active-1955 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.video_blue_7f00 {
    overflow: hidden;
}

.search_green_9df1 {
    list-style: none;
    padding: 0.75rem 0;
}

.tabs-wide-4ea4 {
    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;
}

.tabs-wide-4ea4:hover,
.tabs-wide-4ea4.fn-active-1955 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.tabs-wide-4ea4.basic-4851 {
    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;
}

.tabs-wide-4ea4.basic-4851::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 */
.disabled-middle-bc60 {
    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;
}

.header-right-7845 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.header-right-7845:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.pro-b312 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.pro-b312:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.light-93ac {
    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;
}

.light-93ac:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.box-ecff {
    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;
}

.motion_ae7c {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.motion_ae7c:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.huge_dfac {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.huge_dfac:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.pressed_f34e {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.pressed_f34e: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);
}

.lower-927e {
    font-size: 1em;
    font-weight: 700;
}

.upper_d369 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.active_116e {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.active_116e::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;
}

.tall-f3cc {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .tall-f3cc {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.focus_5d42 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.over_076f {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.shadow-f74e {
    margin-bottom: 2rem;
}

.liquid-73b8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .liquid-73b8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.active-inner-7291 {
    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);
}

.gradient_fast_f1ff {
    font-size: 1.5rem;
}

.down_ce4c {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.purple-ba14 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.focused_11ff {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.focused_11ff:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.in-aaa1 {
    text-align: center;
    margin-bottom: 3rem;
}

.tertiary_static_2859 {
    margin-bottom: 1rem;
}

.wide-f83b {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.lower_6b32 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .lower_6b32 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .lower_6b32.south-fa2a {
        direction: rtl;
    }
    
    .lower_6b32.south-fa2a > * {
        direction: ltr;
    }
}

.middle-383b {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.middle-383b:first-child {
    margin-top: 0;
}

.form_selected_b988 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.basic_b38e {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.basic_b38e:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.old_ae8b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .old_ae8b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.icon_be6f {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.dropdown_fc7a {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.item-7d2f {
    list-style: none;
}

.item-7d2f li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.item-7d2f li:last-child {
    border-bottom: none;
}

/* Games Features */
.caption_d70c {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.fixed-d339 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.simple_bad4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.over_473f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.video-37d5 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.text-62b9 {
    margin: 2rem 0;
}

.basic-414b {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.fluid-d7ad {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.shadow-liquid-136e {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.column_37f4 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.surface_in_b08e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .surface_in_b08e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hard_06f6 {
    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);
}

.hard_06f6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.carousel_black_15d4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.liquid_67b3 {
    font-size: 1.5rem;
}

.left_f0c1 {
    color: var(--accent-color);
    margin: 0;
}

.aside-bright-879c {
    list-style: none;
}

.aside-bright-879c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.aside-bright-879c li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.search-green-0ce8 {
    margin: 2rem 0;
}

.mini_81e9 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.carousel-18e8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .carousel-18e8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hover_short_fed9 {
    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);
}

.table-pink-2d30 {
    font-size: 1.25rem;
}

.tertiary-pressed-f874 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.badge_blue_e785,
.simple_7f1b {
    text-align: center;
    margin: 2rem 0;
}

.gradient-bright-3868,
.sidebar_current_3c38 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.middle_b536 {
    margin: 2rem 0;
    text-align: center;
}

.title_old_0e12 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.title_old_0e12::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;
}

.wood_af0e {
    position: relative;
    z-index: 1;
}

.pattern_2588 {
    margin-bottom: 1rem;
}

.medium-d6c5 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.panel_425d {
    margin-bottom: 3rem;
}

.box_b4ec {
    margin-top: 3rem;
}

.caption_center_f6b5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .caption_center_f6b5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.caption_center_f6b5 .active-inner-7291 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.primary-b847 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.logo-static-69d5 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.filter_glass_49e8 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.pink-ab0f {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .pink-ab0f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pink-ab0f {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.secondary-out-2fc4 {
    margin-bottom: 1rem;
}

.label_active_6c66 img {
    margin-bottom: 1rem;
}

.module_stale_a2fd {
    color: var(--text-gray);
    line-height: 1.6;
}

.small_a33c {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.button-df8b {
    list-style: none;
}

.button-df8b li {
    margin-bottom: 0.5rem;
}

.button-df8b a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.button-df8b a:hover {
    color: var(--accent-color);
}

.gold-f8ba {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.text_0988 {
    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_0988:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.action-2a6d {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.action-2a6d p {
    margin-bottom: 0.25rem;
}

.rough_b8d0 {
    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) {
    .rough_b8d0 {
        flex-direction: row;
    }
}

.hard_56b1 {
    text-align: center;
}

@media (min-width: 768px) {
    .hard_56b1 {
        text-align: left;
    }
}

.hard_56b1 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.item-3a91 {
    font-size: 0.75rem !important;
}

.list-5bed {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.glass_fbc8 {
    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);
    }
}

.carousel-stale-9b89 {
    animation: fadeInUp 0.6s ease-out;
}

.paragraph-short-3981 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.description-cfd5 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .description-cfd5 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.nav_dfbf {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .nav_dfbf {
        grid-template-columns: repeat(4, 1fr);
    }
}

.focused-0d08 {
    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);
}

.focused-0d08 .simple_bad4 {
    font-size: 1.25rem;
}

.focused-0d08 .blue_c124 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.old_b024 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .old_b024 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.primary_f9f0 {
    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);
}

.primary_f9f0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.middle_b52d {
    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);
}

.shade_lower_aec3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.title-south-a0c7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.info-short-e93a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.caption_dirty_2342 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.caption_dirty_2342 .over_473f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.caption_dirty_2342 .video-37d5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.gradient-slow-088f {
    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_dynamic_15bf {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.main_dynamic_15bf img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.main_dynamic_15bf img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.picture_cold_7204 {
    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);
}

.background_light_dd83 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.filter_425c {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter_425c label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.filter_425c 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);
}

.filter_425c input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.filter_425c input::placeholder {
    color: var(--text-muted);
}

.slider_782c {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.card-gold-a874 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.card-gold-a874 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.icon-blue-00b6 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.icon-blue-00b6:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.carousel-18e8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .carousel-18e8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hover_short_fed9 {
    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);
}

.hover_short_fed9 .table-pink-2d30 {
    font-size: 1.25rem;
}

.hover_short_fed9 .tertiary-pressed-f874 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.gallery-east-6fa5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.backdrop-mini-e7f8 {
    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);
}

.backdrop-mini-e7f8 .simple_bad4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.backdrop-mini-e7f8 .over_473f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.backdrop-mini-e7f8 .video-37d5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.search-d534 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.popup_c273 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.popup_c273 .picture_static_4931 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.popup_c273 .center_8a44 {
    color: var(--text-gray);
    line-height: 1.6;
}

.container-b899 {
    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);
}

.block-old-69f4 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .block-old-69f4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.banner-west-c454 {
    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);
}

.banner-west-c454:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.column-bright-3ec3 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.preview_pink_a204 {
    flex: 1;
}

.hard_ad5d {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.wood_cd97 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.caption_left_3e16 {
    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);
}

.caption_left_3e16:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.secondary_red_1682 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .secondary_red_1682 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.mini-598e {
    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);
}

.mini-598e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.blue_76ca {
    font-size: 2rem;
    flex-shrink: 0;
}

.sort_south_79f3 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.focus-8ab6 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.header_4b96 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.background-dynamic-ca24 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.component_iron_5eef {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.notification_4c89 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.notification_4c89 .badge-c030 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.notification_4c89 .focus-paper-20eb {
    color: var(--text-gray);
    line-height: 1.6;
}

.active-0e8d {
    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);
}

.hover_b4a9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.grid-aa7d {
    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);
}

.grid-aa7d .simple_bad4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.grid-aa7d .over_473f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.grid-aa7d .video-37d5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.box_last_a520 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .box_last_a520 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pagination_0f97 {
    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);
}

.pagination_0f97:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.carousel_d482 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .carousel_d482 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.highlight_4344 {
    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);
}

.highlight_4344:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.module-58fc {
    font-size: 2rem;
    flex-shrink: 0;
}

.summary_upper_9e3f {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.fluid-d7ad {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.motion-3ea1 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.hero-245a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.bottom_ae43 {
    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);
}

.bottom_ae43:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tag_615a {
    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);
}

.shade_advanced_879a {
    flex: 1;
}

.carousel-glass-f158 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.yellow-c039 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.fresh-8688 {
    color: var(--text-gray);
    line-height: 1.6;
}

.shadow-upper-b863 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dropdown-thick-a332 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dropdown-thick-a332 .picture_static_4931 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.dropdown-thick-a332 .center_8a44 {
    color: var(--text-gray);
    line-height: 1.6;
}

.simple_7f1b {
    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);
}

.message-fresh-269f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .message-fresh-269f {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.tertiary-static-2c2b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tertiary-static-2c2b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.down-2009 {
    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-2009:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.notification-d5ab {
    font-size: 2rem;
    flex-shrink: 0;
}

.icon_stale_6e25 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.thumbnail-9f48 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.summary_red_e5e3 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.block-757e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.logo_c6a8 {
    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);
}

.white_96d9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tabs-warm-59ff {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.brown-9a4a {
    color: var(--text-gray);
    line-height: 1.6;
}

.hover_b4a9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.grid-aa7d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.grid-aa7d .over_473f {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.grid-aa7d .video-37d5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.table_upper_afef {
    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);
}

.card_27a4 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .card_27a4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .card_27a4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.preview_4331 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.preview_4331:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.dropdown_lower_c3ea {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.feature-6e62 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.pink-5731 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.content-3c21 {
    padding: 1.5rem;
}

.outer-7744 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.list-dim-0c76 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-dim-0c76 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;
}

.list-dim-0c76 li:last-child {
    border-bottom: none;
}

.list-dim-0c76 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.carousel-d22f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .carousel-d22f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.row-yellow-95db {
    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-yellow-95db:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.filter_2f58 {
    font-size: 2rem;
    flex-shrink: 0;
}

.large-e6bb {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.item-92cb {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.backdrop_40fa {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.image-mini-f97f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.thumbnail-71f4 {
    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);
}

.carousel-yellow-412c {
    font-size: 2rem;
    flex-shrink: 0;
}

.rough_0201 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.mask_fc2d {
    color: var(--text-gray);
    line-height: 1.6;
}

.bright_dacd {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.modal_e907 {
    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);
}

.wrapper-d5cc {
    text-align: center;
}

.label_light_e800 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.simple_ef2a {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.cool_6d02 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wood_53d8 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wood_53d8 .over_473f {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.wood_53d8 .video-37d5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.fresh_0269 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .fresh_0269 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .fresh_0269 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.image_918b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.image_918b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.search_west_289d {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.alert-f382 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.over_473f {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.first-f2f3 {
    padding: 1.5rem;
}

.video-37d5 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.preview_simple_bb5e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.preview_simple_bb5e 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;
}

.preview_simple_bb5e li:last-child {
    border-bottom: none;
}

.preview_simple_bb5e li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.label-north-0494 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.background_active_b481 {
    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);
}

.background_active_b481:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.advanced_d4be {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.container_d145 {
    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);
}

.middle_b52d {
    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;
}

.shade_lower_aec3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.title-south-a0c7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.video_wide_3cbf {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.filter-out-6963 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.pressed_78f9 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.small-73d3 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.link_275c {
    display: flex;
    gap: 1rem;
}

.link_275c .heading-west-e750 {
    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;
}

.stale-0e43 {
    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);
}

.status_4414 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.description_plasma_31e7 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.description_plasma_31e7 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;
}

.description_plasma_31e7 li:last-child {
    border-bottom: none;
}

.description_plasma_31e7 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.caption-hard-79c4 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .caption-hard-79c4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .caption-hard-79c4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hero_new_e22f {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.hero_new_e22f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.preview-advanced-b47b {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.lite-bf23 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.badge-c030 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.description_large_c52c {
    font-size: 1rem;
}

.heading-adb5 {
    padding: 1.5rem;
}

.focus-paper-20eb {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.tabs-current-4c3f {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.tabs-current-4c3f .wrapper-d5cc {
    text-align: center;
}

.tabs-current-4c3f .simple_ef2a {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.tabs-current-4c3f .wrapper_33b8 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.thumbnail-purple-912a {
    display: block;
    width: 100%;
    background: var(--primary-gradient);
    color: var(--primary-bg);
    text-decoration: none;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-normal);
    border: 1px solid var(--accent-color);
}

.thumbnail-purple-912a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.block_silver_2e8f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .block_silver_2e8f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.widget_a470 {
    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_a470:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.active_bd0f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hero_blue_41f1 {
    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);
}

.column_hot_2a5c {
    font-size: 2rem;
    flex-shrink: 0;
}

.footer-simple-6f55 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.table-2d75 {
    color: var(--text-gray);
    line-height: 1.6;
}

.soft_6976 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.row_outer_bbe4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.medium-0b9a {
    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);
}

.next-f87b {
    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;
}

.next-f87b.sidebar-warm-3258 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.next-f87b.tabs-6a5d {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.next-f87b.pink_7723 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.next-f87b.light_df41 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.next-f87b.tabs_f72b {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.disabled-a9e8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.dropdown_15d5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.static_2c95 {
    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);
}

.stone_b64b {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.search-d534 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-d534 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;
}

.search-d534 li:last-child {
    border-bottom: none;
}

.search-d534 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.up_30f5 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .up_30f5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .up_30f5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.outer_8871 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.outer_8871:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.outer_8871.thumbnail-static-f7ec {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .outer_8871.thumbnail-static-f7ec {
        grid-column: span 3;
    }
}

.left_b1e8 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.outer_8871.thumbnail-static-f7ec .left_b1e8 {
    background: rgba(6, 182, 212, 0.1);
}

.content_b3e8 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.feature-lite-7d86 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.outer_8871.thumbnail-static-f7ec .feature-lite-7d86 {
    color: var(--info-color);
}

.primary-east-1ba9 {
    padding: 1.5rem;
    text-align: center;
}

.hot-cd7a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.outer_8871.thumbnail-static-f7ec .hot-cd7a {
    color: var(--info-color);
}

.tabs_bottom_2bf2 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.accent_stale_9369 {
    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 */
.icon-5524 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .icon-5524 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.preview-dynamic-1423 {
    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);
}

.preview-dynamic-1423:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.cool_8bf2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.backdrop-mini-e7f8 {
    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);
}

.table-pink-2d30 {
    font-size: 2rem;
    flex-shrink: 0;
}

.active_2b1d {
    flex: 1;
}

.mini_81e9 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.stone_52e8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.focus_c5b5 {
    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);
}

.active_9323 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.light-2c1c {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.glass_fbc8 {
    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);
}

.block_inner_fa43 {
  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);
}

.block_inner_fa43 .wrapper-d5cc {
    text-align: center;
}

.block_inner_fa43 .label_light_e800 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.block_inner_fa43 .simple_ef2a {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.full_3b5b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.medium-3f6e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.heading-top-1641 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.main-fresh-952b {
    color: var(--text-gray);
    line-height: 1.6;
}

.caption_b8db {
    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);
}

.input_solid_35f4 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.left_0c6a {
    color: var(--text-gray);
    line-height: 1.6;
}

.tabs-0b2c {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .tabs-0b2c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tabs-0b2c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.container_wide_d59d {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.container_wide_d59d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.up_215e {
    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);
}

.photo_short_c5f9 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.button_lite_54ea {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.pro-30e6 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pro-30e6.box_soft_2071 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.pro-30e6.accordion_e415 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.pro-30e6.preview-top-0d21 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.frame_e79d {
    padding: 1.5rem;
    text-align: center;
}

.icon_outer_c039 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.progress_d81a {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.progress_d81a .clean_d18d {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.slow_72bf {
    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);
}

.slow_72bf:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.grid_wide_d6a1 {
  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);
}

.tertiary_ecea {
    text-align: center;
}

.tertiary_ecea .label_light_e800 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.tertiary_ecea .simple_ef2a {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.video_c854 { text-align: center; }
.tiny_bf82 { text-align: left; }
.solid_1950 { text-align: right; }

.picture_90c6 { margin-bottom: 0; }
.tooltip-pressed-3a40 { margin-bottom: 0.5rem; }
.layout_bright_3f98 { margin-bottom: 1rem; }
.backdrop-78ad { margin-bottom: 1.5rem; }
.component-7519 { margin-bottom: 2rem; }

.fluid_3a9e { margin-top: 0; }
.left_7eb5 { margin-top: 0.5rem; }
.hovered-003b { margin-top: 1rem; }
.bright-1197 { margin-top: 1.5rem; }
.hidden_aee8 { margin-top: 2rem; }

.fn-hidden-1955 { display: none; }
.fn-visible-1955 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .active_116e {
        padding: 6rem 0 3rem;
    }
    
    .tall-f3cc {
        text-align: center;
    }
    
    .lower_6b32 {
        text-align: center;
    }
    
    .liquid-73b8 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .badge-13bd,
    .element-green-793d,
    .title_old_0e12,
    .filter_glass_49e8 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .active_116e {
        background: none;
    }
}

/* Providers Section */
.pattern-f36b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.middle-6177 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .middle-6177 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .middle-6177 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.title_c1a0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.title_c1a0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.picture_thick_6201 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.description_5a9b {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.complex-3839 {
    list-style: none;
    padding: 0;
}

.complex-3839 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.complex-3839 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.fixed-b804 {
    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);
}

.fixed-b804 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.steel_3e02 {
    padding: var(--section-padding);
}

.large-9a4b {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .large-9a4b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.main_silver_173b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.main_silver_173b:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.row-3df3 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.motion_439e {
    display: flex;
    flex-direction: column;
}

.brown_319b {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.secondary-over-9c35 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.progress_24de {
    color: var(--accent-color);
}

.simple-df95 {
    font-size: 1.25rem;
}

.tabs-3495 {
    margin-bottom: 1rem;
}

.tabs-3495 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.column-9801 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.carousel-red-9521 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.wrapper-d5cc {
    text-align: center;
}

.label_light_e800 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.simple_ef2a {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.modal_gold_2c65 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.section-in-e38c {
    margin: 2rem 0;
}

.outline_a433 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.outline_a433 .simple_bad4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.basic-d888 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.yellow_3a7f {
    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;
}

.yellow_3a7f:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.popup_a625 {
    font-size: 2rem;
}

.east-be7b {
    display: flex;
    flex-direction: column;
}

.secondary_hard_b187 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.article-warm-6d24 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.heading-b061 {
    padding: var(--section-padding);
}

.dim-e28a {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .dim-e28a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .dim-e28a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gas_b166 {
    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);
}

.gas_b166:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.gas_b166 .label_light_e800 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.gas_b166 .simple_ef2a {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.gas_b166 .first_17e9 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.article_2318 {
    margin-top: 4rem;
}

.mini_8c35 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.simple_b262 {
    overflow-x: auto;
}

.east_5d05 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.east_5d05 thead {
    background: var(--accent-color);
}

.east_5d05 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.east_5d05 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.east_5d05 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.east_5d05 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.list_a98d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.stale_f94a {
    max-width: 900px;
    margin: 0 auto;
}

.sort-plasma-4cd6 {
    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);
}

.sort-plasma-4cd6:hover {
    border-color: var(--accent-color);
}

.notice_b4ff {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.notice_b4ff h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.focused_4f03 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.sort-plasma-4cd6.fn-active-1955 .focused_4f03 {
    transform: rotate(45deg);
}

.article_443d {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.sort-plasma-4cd6.fn-active-1955 .article_443d {
    max-height: 1000px;
}

.article_443d p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.active-d81c {
    padding: var(--section-padding);
}

.main_dynamic_15bf {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.box-rough-9653 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.row-new-fdc4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .row-new-fdc4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.video-562c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.logo_paper_bb79 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.accent-in-183c {
    font-size: 2rem;
}

.button_new_6821 {
    color: var(--text-white);
    margin: 0;
}

.text_33fc {
    list-style: none;
    padding: 0;
}

.text_33fc li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.text_33fc li:last-child {
    border-bottom: none;
}

.pressed_0146 {
    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);
}

.pressed_0146 p {
    color: var(--success-color);
    margin: 0;
}

.item_copper_39e6 {
    margin-top: 3rem;
}

.status_4414 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.gradient_silver_4e39 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .gradient_silver_4e39 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.backdrop_black_e747 {
    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);
}

.list-light-8772 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.backdrop_black_e747 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.summary_lower_c3e4 {
    padding: var(--section-padding);
}

.disabled-top-8104 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .disabled-top-8104 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.column-874e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.column-874e:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.medium_ec16 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.primary-997a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.short-8af0 {
    flex: 1;
}

.description_bb41 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.notification_c179 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.block-a587 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tabs-action-2d31 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tabs-action-2d31:last-child {
    border-bottom: none;
}

/* Comparison Section */
.popup-50c4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.alert-left-4d30 {
    padding: var(--section-padding);
}

.last_d5da {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.alert_6a6c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .alert_6a6c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.description-large-8b44 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.upper-20e9, .breadcrumb-hard-b5df, .button-c45b {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.button-c45b {
    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 */
.mask-fixed-efee {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.mini-c242 {
    margin: 2rem 0;
}

.logo_cdf7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.glass_170e {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.background_fast_e495 {
    list-style: none;
    padding: 0;
}

.background_fast_e495 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;
}

.background_fast_e495 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.background_fast_e495 li:last-child {
    border-bottom: none;
}

.advanced_e6e8 {
    text-align: center;
    margin-top: 2rem;
}

.cool_c076 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.title_4e89 {
    padding: var(--section-padding);
}

.detail_9107 {
    margin: 2rem 0;
}

.middle_b632 {
    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) {
    .middle_b632 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.middle_b632:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.list_wood_48cc {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.info-dark-f6b5 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.grid-action-4b96 {
    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;
}

.down-6b63 {
    flex: 1;
}

.overlay-dark-c920 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.summary-gas-386c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.overlay-4698 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.table_down_605b {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .table_down_605b {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.element_blue_6a99 {
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.element_blue_6a99:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.element_blue_6a99 .label_light_e800 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.element_blue_6a99 .simple_ef2a {
    color: var(--text-gray);
    font-size: 1rem;
}

.form_e1f0 {
    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);
}

.title-25a3 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.title-25a3 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.shadow_next_2700 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .shadow_next_2700 {
        grid-template-columns: 1fr 1fr;
    }
}

.middle_d85b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.row-hard-31c0 {
    margin-bottom: 1.5rem;
}

.row-hard-31c0 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.row-hard-31c0 input,
.row-hard-31c0 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;
}

.row-hard-31c0 input:focus,
.row-hard-31c0 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.column_4d6c {
    width: 100%;
    margin-top: 1rem;
}

.orange-3d7e {
    display: flex;
    align-items: center;
}

.gold_b8fb {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.icon-motion-f846 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.hero-fixed-3cae {
    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;
}

.last_326b {
    color: var(--text-gray);
}

.content_dim_0ab2 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.pagination-right-0f5e {
    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);
}

.pagination-right-0f5e p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.tertiary_hard_d08f {
    margin-top: 3rem;
}

.header-advanced-f681 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.pattern_9246 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.header_f8c2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.nav_1746 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav_1746:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.blue_6a78 {
    padding: var(--section-padding);
}

.accordion-in-aa3b {
    margin: 2rem 0;
}

.aside_glass_993f {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.sort_bronze_3cb8 {
    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;
}

.sort_bronze_3cb8:hover, .sort_bronze_3cb8.fn-active-1955 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.paragraph_ce99 {
    display: none;
}

.paragraph_ce99.fn-active-1955 {
    display: block;
}

.hovered_1dc8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dirty_db12 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.menu-inner-89e9 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.menu-inner-89e9 ul {
    list-style: none;
    padding: 0;
}

.menu-inner-89e9 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.menu-inner-89e9 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.overlay-ccbc {
    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 */
.header-yellow-99cb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.gas_7f85 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.menu-579d {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.stone_9a3f {
    color: var(--accent-color);
    margin: 0;
}

.form-orange-eeac {
    display: flex;
    gap: 1.5rem;
}

.breadcrumb_2c2f {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.picture_copper_130c {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.lower_cd7e {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.lower_cd7e.main-over-a26a {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.lower_cd7e.backdrop-large-3598 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.lower_cd7e.container-stale-72f7 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.surface-9ae1 {
    margin-top: 2rem;
}

.current-ceef {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.widget-brown-79cb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .widget-brown-79cb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.prev_c4d9 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.item-26f0 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.highlight_1a01 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.grid-pro-cfaa {
    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 */
.title-1b0e {
    padding: var(--section-padding);
}

.lower_7b90 {
    margin: 2rem 0;
}

.old-83ad {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.status-b94a {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.thick_0cff {
    list-style: none;
    padding: 0;
}

.thick_0cff 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;
}

.thick_0cff li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.thick_0cff li:last-child {
    border-bottom: none;
}

.grid-2e88 {
    margin: 2rem 0;
}

.list_fixed_b098 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.photo_stone_0f25 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .photo_stone_0f25 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.primary-west-5755 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.description_cold_b125 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.message-ddfd {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.simple-a410 {
    margin-top: 2rem;
}

.hard_ad5d {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.hot-feac {
    list-style: none;
    padding: 0;
}

.section-3b1a {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.section-3b1a a {
    color: var(--accent-color);
    text-decoration: none;
}

.section-3b1a a:hover {
    text-decoration: underline;
}

.silver-e3ac {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    border-left: 4px solid var(--success-color);
}

/* League Coverage Section */
.smooth_3699 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dirty-24fb {
    margin: 2rem 0;
}

.nav_next_9045 {
    margin-bottom: 3rem;
}

.nav_next_9045 .glass_170e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.border_e2f6 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.dynamic_bb23 {
    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);
}

.dynamic_bb23:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.background-west-31ac {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .background-west-31ac {
        grid-template-columns: repeat(4, 1fr);
    }
}

.red-e362 {
    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 */
.stale_37fe {
    padding: var(--section-padding);
}

.wrapper-f318 {
    margin: 2rem 0;
}

.east-326c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.middle_fabc {
    overflow-x: auto;
    margin: 2rem 0;
}

.pagination_south_aa5d {
    background: rgba(6, 182, 212, 0.1) !important;
}

.complex_251d {
    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;
}

.image_easy_37d3 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.breadcrumb-center-6128 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .breadcrumb-center-6128 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fluid_cd4d {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.fluid_cd4d .simple_bad4 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.fluid_cd4d .over_473f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.bronze-ed77 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.dropdown_1ce8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.center-8566 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .center-8566 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sidebar-666c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.sidebar-666c:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.item_pro_71b4 {
    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);
}

.hover_small_99d0 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-full);
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

.grid_left_004c {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.progress_down_f24d {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.hidden-26c2 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.first_b15b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.element-easy-b9c2 {
    color: var(--text-white);
    font-weight: 600;
}

.gradient-mini-dc86 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.picture_ec9d {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.picture_ec9d .heading-west-e750 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.warm-1cc8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .warm-1cc8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.column_medium_7cea {
    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);
}

.column_medium_7cea:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.column_medium_7cea .label_light_e800 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.column_medium_7cea .simple_ef2a {
    color: var(--text-gray);
    font-size: 1rem;
}

.article-fresh-62c4 {
    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);
}

.cold_f3bf {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.cold_f3bf strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.block-757e {
    margin: 2rem 0;
}

.logo_c6a8 {
    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);
}

.logo_c6a8:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.white_96d9 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.smooth_b298 {
    flex: 1;
}

.tabs-warm-59ff {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.brown-9a4a {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.hover_b4a9 {
    margin: 2rem 0;
}

.grid-aa7d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.grid-aa7d .over_473f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.grid-aa7d .video-37d5 {
    color: var(--text-gray);
    margin: 0;
}

.table_upper_afef {
    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);
}

.table_upper_afef .gradient-bright-3868 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.bronze-ed77 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.tag_615a {
    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;
}

.shade_advanced_879a {
    flex: 1;
}

.yellow-c039 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.fresh-8688 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.middle_b52d {
    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;
}

.upper_b4e4 {
    flex: 1;
}

.shade_lower_aec3 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.title-south-a0c7 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.pressed_78f9 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.small-73d3 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.link_275c {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.link_275c .heading-west-e750 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.stale-0e43 {
    margin-top: 2rem;
}

.stale-0e43 .status_4414 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.header-bf0b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.modal_e907 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .modal_e907 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.modal_e907 .wrapper-d5cc {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.cool_6d02 {
    margin: 2rem 0;
}

.wood_53d8 {
    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 */
.breadcrumb_wide_d192 {
    padding: var(--section-padding);
}

.first-f2f3 {
    margin-top: 1rem;
}

.preview_simple_bb5e {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.preview_simple_bb5e li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.preview_simple_bb5e li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.dirty-a776 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tag-99f9 {
    margin: 2rem 0;
}

.avatar_a4a1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.heading_57f0 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.banner-down-7d36 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.pattern-03f7 {
    margin: 2rem 0;
}

.stale_3106 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.stale_3106 .glass_170e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.overlay-d819 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .overlay-d819 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gradient_e174 {
    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);
}

.mask_lite_ba83 {
    color: var(--text-white);
    font-weight: 600;
}

.wrapper_2a12 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.popup-out-c1c4 {
    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);
}

.popup-out-c1c4 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.purple_d914 {
    padding: var(--section-padding);
}

.static_adc5 {
    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;
}

.static_adc5:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.sidebar-blue-e62a {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-blue-e62a .list-light-8772 {
    font-size: 2rem;
    flex-shrink: 0;
}

.sidebar-blue-e62a .prev_b4c3 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.fixed_8e53 {
    flex: 1;
}

.hot-ae99 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.background_ea23 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.background_ea23 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.background_ea23 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.hard_e9ac {
    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);
}

.hard_e9ac p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.hard_e9ac strong {
    color: var(--warning-color);
}

/* Slots Section */
.up_ae8e {
    padding: var(--section-padding);
}

.background-dynamic-ca24 {
    margin: 2rem 0;
}

/* Table Games Section */
.description-pro-1cc9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.component_iron_5eef {
    margin: 2rem 0;
}

.notification_4c89 {
    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_4c89:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.notification_4c89 .badge-c030 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.notification_4c89 .focus-paper-20eb {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.active-0e8d {
    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);
}

.active-0e8d .gradient-bright-3868 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.sidebar-medium-79f4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.background-wide-c236 {
    margin: 2rem 0;
}

.action-5a4b {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.article-c1fb {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.disabled-iron-c887 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.light-aaa8 {
    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);
}

.light-aaa8:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.light-aaa8.fn-active-1955 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.popup-edc2 {
    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);
}

.sidebar_iron_5555 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.sidebar_iron_5555 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.texture-last-a8ae {
    padding: var(--section-padding);
}

.hover-d1d4 {
    margin: 2rem 0;
}

.secondary-old-056d {
    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);
}

.secondary-old-056d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .secondary-old-056d {
        flex-direction: column;
        align-items: flex-start;
    }
}

.hero-2aa6 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.hard_0b65 {
    flex: 1;
}

.texture_ddb1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.shade_hard_72fd {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.link-e8c7 {
    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;
}

.prev_5545 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.feature-758e {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.icon_34b2 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.hover-5b43 {
    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;
}

.hover-5b43:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.glass_cd95 {
    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);
}

.liquid_b67a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.liquid_b67a strong {
    color: var(--accent-color);
}

/* New Games Section */
.border-7f24 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.image_7251 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .image_7251 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .image_7251 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.texture_3e79 {
    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;
}

.texture_3e79:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.sort_db01 {
    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;
}

.text-d9d7 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.input-d022 {
    font-size: 2rem;
}

.alert_simple_f585 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.summary_bottom_8035 {
    flex: 1;
}

.slider-9be9 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.gold_6110 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.active-a431 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.image_9595 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.silver_10f9 {
    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;
}

.black_f30d {
    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;
}

.black_f30d:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.sort-stale-bed9 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wood_f07f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.surface-219d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .surface-219d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.current-436f {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--secondary-bg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.paragraph_e73d {
    color: var(--text-white);
    font-weight: 600;
}

.section_af71 {
    color: var(--accent-color);
    font-weight: 600;
}

.west_7f72 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.west_7f72 strong {
    color: var(--accent-color);
}

/* Security Section */
.accordion-8d17 {
    padding: var(--section-padding);
}

/* Benefits Section */
.selected_3210 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.dark_0b2f {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.element-liquid-10f8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.summary-25a0 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.paper_7c08 {
    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) {
    .paper_7c08 {
        flex-direction: column;
        gap: 1rem;
    }
}

.paper_7c08:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.paper_7c08 .middle_b52d {
    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;
}

.paper_7c08 .upper_b4e4 {
    flex: 1;
}

.paper_7c08 .shade_lower_aec3 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.paper_7c08 .title-south-a0c7 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.stale-6b40 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.stale-6b40 .mini_81e9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.stale-6b40 .gallery-east-6fa5 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stale-6b40 .gallery-east-6fa5 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.stale-6b40 .gallery-east-6fa5 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.backdrop_mini_3ee9 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.up_8900 {
    padding: var(--section-padding);
}

.section-motion-2bfa {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .section-motion-2bfa {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gold-77d6 {
    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);
}

.gold-77d6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.gold-77d6 .message_hovered_411e {
    font-size: 2rem;
    flex-shrink: 0;
}

.gold-77d6 .badge-12a4 {
    flex: 1;
}

.gold-77d6 .picture_static_4931 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.gold-77d6 .box_huge_7c75 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.focused_d8c7 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.focused_d8c7 .iron-13b1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.focused_d8c7 .video-4ec7 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.focused_d8c7 .video-4ec7 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);
}

.focused_d8c7 .video-4ec7 li:last-child {
    border-bottom: none;
}

.focused_d8c7 .video-4ec7 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;
}

.focused_d8c7 .video-4ec7 li strong {
    color: var(--text-white);
}

.full_be61 {
    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);
}

.full_be61 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.full_be61 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.tooltip_selected_8942 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.east_1e88 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .east_1e88 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dirty-65ab {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.dirty-65ab:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.notice-e179 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pagination_0623 {
    font-size: 2rem;
}

.container_hot_6558 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.detail_lite_272e {
    flex: 1;
}

.old_b5ea {
    list-style: none;
    padding: 0;
    margin: 0;
}

.old_b5ea li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.old_b5ea li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.primary_north_c91e {
    margin-top: 3rem;
}

.old-83ad {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.status-b94a {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.thick_0cff {
    list-style: none;
    padding: 0;
    margin: 0;
}

.thick_0cff li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.thick_0cff li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.thick_0cff li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.box-38e2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.feature_73dd {
    margin: 2rem 0;
}

.dropdown-in-8ba1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.dropdown-in-8ba1 .glass_170e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.description_current_2a00 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .description_current_2a00 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.fresh_fdae {
    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);
}

.fresh_fdae:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.pattern-up-cf70 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.overlay_50b7 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.new-1f28 {
    padding: var(--section-padding);
}

.pattern-paper-1848 {
    margin: 2rem 0;
}

.menu-efce {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .menu-efce {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .menu-efce {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blue_f676 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.blue_f676:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.highlight_b25c {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.footer_green_a175 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.smooth_4c03 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.smooth_4c03.grid-dcc4 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.highlight-99e1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.pattern_2d30 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.heading_east_9049 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.focus_down_86a7 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.status-new-5dbd {
    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-new-5dbd p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.status-new-5dbd strong {
    color: var(--accent-color);
}

/* Update Log Section */
.hot-74c3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.prev_1ca1 {
    margin: 2rem 0;
}

.element-north-4d99 {
    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) {
    .element-north-4d99 {
        flex-direction: column;
        gap: 1rem;
    }
}

.element-north-4d99:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.element-north-4d99::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);
}

.dark-f3c5 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.first-bc78 {
    flex: 1;
}

.menu_0de8 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.up-3b21 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.up-3b21 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.simple-6369 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shade_black_ebda {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.slider-focused-6698 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .slider-focused-6698 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.status_dark_f33a {
    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);
}

.outline_9a32 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.advanced-47ad {
    flex: 1;
}

.tabs-liquid-1afe {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.last-a2f3 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.stale-3145 {
    margin-top: 2rem;
    text-align: center;
}

.silver_038a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.silver_038a strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.block_silver_2e8f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .block_silver_2e8f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.widget_a470 {
    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_a470:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.widget_a470 .filter_2f58 {
    font-size: 2rem;
    flex-shrink: 0;
}

.widget_a470 .large-e6bb {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.widget_a470 .item-92cb {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.widget_a470 .backdrop_40fa {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.purple_3607 {
    padding: var(--section-padding);
}

.hero_blue_41f1 .paragraph_0728 {
    flex: 1;
}

/* Promo Calendar Section */
.layout_center_c365 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.detail_middle_560c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .detail_middle_560c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.row_hovered_b7ab {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gallery-new-ff2d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.black-bc6f {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tiny_8f88 {
    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);
}

.rough-aaab {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.smooth_160f {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.heading-motion-0f2c {
    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);
}

.heading-motion-0f2c p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.heading-motion-0f2c strong {
    color: var(--accent-color);
}

/* Requirements Section */
.item_7c87 {
    padding: var(--section-padding);
}

.inner-f2fd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .inner-f2fd {
        grid-template-columns: repeat(2, 1fr);
    }
}

.fast-8f76 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.secondary-7ad6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.form_9bf7 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.form_9bf7 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.dynamic-8425 {
    margin-top: 3rem;
}

.dynamic-8425 .old-83ad {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.dynamic-8425 .status-b94a {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.dynamic-8425 .thick_0cff {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.dynamic-8425 .thick_0cff li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.dynamic-8425 .thick_0cff li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.dynamic-8425 .thick_0cff li strong {
    color: var(--warning-color);
}

.carousel-1774 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.carousel-1774 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.large_2d3a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.banner_27ca {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .banner_27ca {
        grid-template-columns: repeat(3, 1fr);
    }
}

.block_b6cc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.block_b6cc .glass_170e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.outline-lower-c773 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tooltip-3341 {
    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);
}

.tooltip-3341:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.pagination_6120 {
    font-size: 2rem;
    flex-shrink: 0;
}

.accent_66b5 {
    flex: 1;
}

.popup_c29d {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.tooltip_large_c51a {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.over_3d59 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.hard-3a2a {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.breadcrumb_70ee {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .breadcrumb_70ee {
        grid-template-columns: repeat(4, 1fr);
    }
}

.smooth-6f72 {
    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);
}

.smooth-6f72:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.video-025b {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.smooth_4581 {
    color: var(--text-gray);
    font-size: 1rem;
}

.title-25a3 {
    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);
}

.tertiary_5e81 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.tertiary_5e81 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.hidden_bd63 { 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; }
.focused_11ff, .basic_b38e { max-width:100%; height:auto; }

.disabled-middle-bc60, .light-93ac, .box-ecff { white-space:normal; }

.tall-f3cc,
.lower_6b32,
.icon-5524,
.block_silver_2e8f,
.hover_b4a9,
.tabs-0b2c {
  flex-wrap:wrap;
}

[class*="grid"],
.breadcrumb_70ee,
.menu-efce,
.caption_center_f6b5 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.active_116e img,
.lower_6b32 img,
.purple-ba14 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.focus_5d42, .over_076f,
.tertiary_static_2859, .wide-f83b {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.simple_b262 { width:100%; overflow-x:auto; }
.simple_b262 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.middle-6177 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .middle-6177 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.title_c1a0 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.dim-e28a,
.form-0fd0,
.background_pro_38f9,
.accordion_hard_b103,
.table_down_605b,
.breadcrumb_70ee,
.menu-efce,
.caption_center_f6b5,
.grid_wide_d6a1,
.hover-d1d4,
.middle-6177 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .dim-e28a,
  .form-0fd0,
  .background_pro_38f9,
  .accordion_hard_b103,
  .table_down_605b,
  .breadcrumb_70ee,
  .menu-efce,
  .caption_center_f6b5,
  .grid_wide_d6a1,
  .hover-d1d4,
  .middle-6177 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.gas_b166,
.element_blue_6a99,
.smooth-6f72,
.active-inner-7291,
.blue_f676,
.tertiary_ecea,
.secondary-old-056d,
.title_c1a0 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.video_white_48f3,
.secondary_1250,
.black_edba {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.video_white_48f3 > *,
.secondary_1250 > *,
.black_edba > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: e30d */
.promo-block-y7 {
  padding: 0.4rem;
  font-size: 11px;
  line-height: 1.2;
}
