/* {$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;
}

.silver-cd6c {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.image_78fb {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .image_78fb {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .image_78fb {
        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 */
.caption-f357 {
    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);
}

.solid_0f2d {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .solid_0f2d {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .easy-01b9 {
        grid-column: 1;
    }
    
    .stale-2e49 {
        grid-column: 2;
    }
    
    .preview-simple-76e8 {
        grid-column: 3;
    }
}

.easy-01b9 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.easy-01b9:hover img {
    transform: scale(1.05);
}

/* Navigation */
.hard_4fcd {
    display: none;
}

@media (min-width: 1024px) {
    .hard_4fcd {
        display: block;
    }
}

/* Grouped Navigation */
.stone_8ed2 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.link-6bf9 {
    position: relative;
}

.border_2bd2 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.link-6bf9 .shade-4547 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.shade-4547 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.wrapper-down-f1d0 {
    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;
}

.wrapper-down-f1d0:hover,
.wrapper-down-f1d0.fn-active-5ae6 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.preview-hard-a5e9 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .preview-hard-a5e9 {
        display: flex;
    }
}

/* Mobile Register Button */
.stale-2e49 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .stale-2e49 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.silver-5593 {
    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;
}

.silver-5593::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 */
.preview-simple-76e8 {
    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) {
    .preview-simple-76e8 {
        display: none;
    }
}

.preview-simple-76e8 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.preview-simple-76e8.fn-active-5ae6 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.preview-simple-76e8.fn-active-5ae6 span:nth-child(2) {
    opacity: 0;
}

.preview-simple-76e8.fn-active-5ae6 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.background-19c4 {
    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;
}

.background-19c4.fn-active-5ae6 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.purple_58dc {
    overflow: hidden;
}

.form-1412 {
    list-style: none;
    padding: 0.75rem 0;
}

.tertiary_c98b {
    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;
}

.tertiary_c98b:hover,
.tertiary_c98b.fn-active-5ae6 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.tertiary_c98b.light_006d {
    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;
}

.tertiary_c98b.light_006d::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 */
.lite_d417 {
    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;
}

.pattern-basic-380c {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.pattern-basic-380c:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.hero_403a {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.hero_403a:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.light_0f4e {
    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_0f4e:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.disabled-a502 {
    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;
}

.popup_91d7 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.popup_91d7:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.pattern_c64d {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.pattern_c64d:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.border_1a6f {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.border_1a6f: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);
}

.white_50c9 {
    font-size: 1em;
    font-weight: 700;
}

.pro_a565 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.green_43bf {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.green_43bf::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;
}

.wrapper-45b2 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .wrapper-45b2 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.outer_1d20 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.section_9c18 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.chip-action-40bb {
    margin-bottom: 2rem;
}

.message-old-b0bf {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .message-old-b0bf {
        grid-template-columns: repeat(4, 1fr);
    }
}

.message_fixed_92d2 {
    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);
}

.hover-simple-35ab {
    font-size: 1.5rem;
}

.hover_6c78 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.lite_f7c0 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.complex-f1e4 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.complex-f1e4:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.green-548b {
    text-align: center;
    margin-bottom: 3rem;
}

.frame-large-afd0 {
    margin-bottom: 1rem;
}

.hidden_43bb {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.hover_liquid_3d5a {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hover_liquid_3d5a {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .hover_liquid_3d5a.old_b9b5 {
        direction: rtl;
    }
    
    .hover_liquid_3d5a.old_b9b5 > * {
        direction: ltr;
    }
}

.down_8c68 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.down_8c68:first-child {
    margin-top: 0;
}

.bright-fed9 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.sidebar_7164 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.sidebar_7164:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.tag-5bf5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tag-5bf5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.warm-00a7 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.full_098e {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.aside_cold_b876 {
    list-style: none;
}

.aside_cold_b876 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.aside_cold_b876 li:last-child {
    border-bottom: none;
}

/* Games Features */
.yellow-e277 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.shadow-dde2 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.title_7f7e {
    font-size: 2rem;
    flex-shrink: 0;
}

.breadcrumb_afe2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.overlay-steel-b9a7 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.menu-b31d {
    margin: 2rem 0;
}

.dropdown-a569 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.menu_7608 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.video-c19a {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.table_cool_ef5d {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.message-81b1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .message-81b1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.active-5fc6 {
    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);
}

.active-5fc6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.input_new_f739 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.tag_liquid_1d2d {
    font-size: 1.5rem;
}

.card-006b {
    color: var(--accent-color);
    margin: 0;
}

.accent_black_6a5e {
    list-style: none;
}

.accent_black_6a5e li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.accent_black_6a5e li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.light_0367 {
    margin: 2rem 0;
}

.silver_2da5 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.caption_middle_aac3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .caption_middle_aac3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.selected-8cba {
    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);
}

.notification_clean_c0ae {
    font-size: 1.25rem;
}

.accent-296a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.container-wide-4313,
.table_huge_464d {
    text-align: center;
    margin: 2rem 0;
}

.smooth_abd5,
.easy_b83e {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.alert_lower_c677 {
    margin: 2rem 0;
    text-align: center;
}

.footer_wide_0be2 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer_wide_0be2::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;
}

.text-62e3 {
    position: relative;
    z-index: 1;
}

.paragraph-new-f1b0 {
    margin-bottom: 1rem;
}

.primary-34d2 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.paper-b53e {
    margin-bottom: 3rem;
}

.progress_out_b327 {
    margin-top: 3rem;
}

.short-2b2e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .short-2b2e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.short-2b2e .message_fixed_92d2 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.brown-04d9 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.background_a69e {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.paragraph-b3c9 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.background-narrow-2583 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .background-narrow-2583 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .background-narrow-2583 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.pressed-3922 {
    margin-bottom: 1rem;
}

.shade_51c9 img {
    margin-bottom: 1rem;
}

.hard_df26 {
    color: var(--text-gray);
    line-height: 1.6;
}

.banner-action-f5f8 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.content_0337 {
    list-style: none;
}

.content_0337 li {
    margin-bottom: 0.5rem;
}

.content_0337 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.content_0337 a:hover {
    color: var(--accent-color);
}

.warm_5c95 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.row_b9bb {
    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);
}

.row_b9bb:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.action_d848 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.action_d848 p {
    margin-bottom: 0.25rem;
}

.surface_144d {
    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) {
    .surface_144d {
        flex-direction: row;
    }
}

.avatar-dark-96d2 {
    text-align: center;
}

@media (min-width: 768px) {
    .avatar-dark-96d2 {
        text-align: left;
    }
}

.avatar-dark-96d2 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.lower-0219 {
    font-size: 0.75rem !important;
}

.caption-401e {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.item_9ff9 {
    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);
    }
}

.out-0669 {
    animation: fadeInUp 0.6s ease-out;
}

.primary_upper_a0d3 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.container_purple_cce7 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .container_purple_cce7 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.row-next-d685 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .row-next-d685 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.copper_f7db {
    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);
}

.copper_f7db .title_7f7e {
    font-size: 1.25rem;
}

.copper_f7db .frame_c152 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.middle_df08 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .middle_df08 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.light_8c85 {
    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);
}

.light_8c85:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.header_old_bdb9 {
    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);
}

.pagination-copper-1564 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.header-blue-9471 {
    color: var(--text-gray);
    line-height: 1.6;
}

.static-da81 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wrapper-f122 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.wrapper-f122 .breadcrumb_afe2 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.wrapper-f122 .overlay-steel-b9a7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.sidebar-middle-32a9 {
    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);
}

.header-prev-bf17 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.header-prev-bf17 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.header-prev-bf17 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.medium_bb83 {
    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);
}

.thumbnail_c206 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.link-4185 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.link-4185 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.link-4185 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);
}

.link-4185 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.link-4185 input::placeholder {
    color: var(--text-muted);
}

.center_c6f1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.shadow-glass-0e43 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.shadow-glass-0e43 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.under-3912 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.under-3912:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.caption_middle_aac3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .caption_middle_aac3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.selected-8cba {
    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);
}

.selected-8cba .notification_clean_c0ae {
    font-size: 1.25rem;
}

.selected-8cba .accent-296a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.widget-ea45 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.avatar-mini-ae5c {
    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);
}

.avatar-mini-ae5c .title_7f7e {
    font-size: 2rem;
    flex-shrink: 0;
}

.avatar-mini-ae5c .breadcrumb_afe2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.avatar-mini-ae5c .overlay-steel-b9a7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hero-fixed-4d99 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.section_red_8c4d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.section_red_8c4d .preview-north-6e6f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.section_red_8c4d .header-bronze-cd27 {
    color: var(--text-gray);
    line-height: 1.6;
}

.element_purple_a4c6 {
    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);
}

.cold_0390 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .cold_0390 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tooltip-advanced-3666 {
    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);
}

.tooltip-advanced-3666:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.over-cf54 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.alert-steel-905e {
    flex: 1;
}

.advanced-345b {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.sidebar-88ac {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.picture-7ee0 {
    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);
}

.picture-7ee0:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.caption_selected_614e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .caption_selected_614e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.heading-7a6d {
    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);
}

.heading-7a6d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.medium-af9e {
    font-size: 2rem;
    flex-shrink: 0;
}

.column_a113 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.heading-rough-afbf {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.mask-smooth-2fcc {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.surface_3626 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.paper_369e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.button-out-dcc4 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.button-out-dcc4 .paragraph-dark-c121 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.button-out-dcc4 .last-18b3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.shadow_1802 {
    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);
}

.gold_3393 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.east-de41 {
    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);
}

.east-de41 .title_7f7e {
    font-size: 2rem;
    flex-shrink: 0;
}

.east-de41 .breadcrumb_afe2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.east-de41 .overlay-steel-b9a7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.preview_brown_b2e2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .preview_brown_b2e2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pattern-west-a9c7 {
    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);
}

.pattern-west-a9c7:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.modal-solid-89d6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .modal-solid-89d6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.border-6f1c {
    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);
}

.border-6f1c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.texture_d26a {
    font-size: 2rem;
    flex-shrink: 0;
}

.texture_92f3 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.menu_7608 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.hover_58c1 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.red_221f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.description_51a1 {
    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);
}

.description_51a1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tabs_1aaf {
    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);
}

.plasma-5e54 {
    flex: 1;
}

.in_6d23 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.modal_top_9111 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.icon_8127 {
    color: var(--text-gray);
    line-height: 1.6;
}

.article_short_2505 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wide-cc7c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wide-cc7c .preview-north-6e6f {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.wide-cc7c .header-bronze-cd27 {
    color: var(--text-gray);
    line-height: 1.6;
}

.table_huge_464d {
    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);
}

.feature-soft-fd5c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .feature-soft-fd5c {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.layout-next-4f15 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .layout-next-4f15 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.thumbnail-7bac {
    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);
}

.thumbnail-7bac:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.accent_a7a8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.nav_dafc {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.table-tall-016a {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.chip-62d4 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.backdrop_green_df90 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.layout-hard-fbad {
    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);
}

.left_9ccd {
    font-size: 2rem;
    flex-shrink: 0;
}

.preview-e35c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.surface_c23b {
    color: var(--text-gray);
    line-height: 1.6;
}

.gold_3393 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.east-de41 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.east-de41 .breadcrumb_afe2 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.east-de41 .overlay-steel-b9a7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.thumbnail-hot-daec {
    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);
}

.simple-cfd5 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .simple-cfd5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .simple-cfd5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.popup-df6e {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.popup-df6e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.table_c6d9 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.accordion_hard_0cce {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.modal-easy-4190 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.cold-8b2c {
    padding: 1.5rem;
}

.thumbnail_a464 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.white-2b66 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.white-2b66 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;
}

.white-2b66 li:last-child {
    border-bottom: none;
}

.white-2b66 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.notice-4521 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .notice-4521 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.module_c5df {
    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);
}

.module_c5df:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tertiary_eefa {
    font-size: 2rem;
    flex-shrink: 0;
}

.bottom-41d0 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.label-e9da {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.gallery_0423 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.advanced_0a37 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.chip-white-5b34 {
    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);
}

.mini_b0c4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.secondary_lower_d531 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.preview-lite-67d6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.card_ad74 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.preview_5c38 {
    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);
}

.background_full_22a2 {
    text-align: center;
}

.action_0302 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.accent_8f46 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.search_cool_7ab4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.header-de81 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.header-de81 .breadcrumb_afe2 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.header-de81 .overlay-steel-b9a7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.accordion-east-3a76 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .accordion-east-3a76 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .accordion-east-3a76 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.notification_narrow_7c16 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.notification_narrow_7c16:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tall_8f8e {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.hover-5be5 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.breadcrumb_afe2 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.inner-2dbb {
    padding: 1.5rem;
}

.overlay-steel-b9a7 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.widget-north-414e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-north-414e 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;
}

.widget-north-414e li:last-child {
    border-bottom: none;
}

.widget-north-414e li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.filter_538b {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.progress-hard-caa4 {
    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);
}

.progress-hard-caa4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.notification-ea86 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.liquid_4d6c {
    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);
}

.header_old_bdb9 {
    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;
}

.pagination-copper-1564 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.header-blue-9471 {
    color: var(--text-gray);
    line-height: 1.6;
}

.media-south-ea6d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.button_pressed_df79 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.notification-e792 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.article_73ad {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.gold-f46d {
    display: flex;
    gap: 1rem;
}

.gold-f46d .alert_82cc {
    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;
}

.silver_00b7 {
    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);
}

.tooltip-f0db {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.video_advanced_4647 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.video_advanced_4647 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;
}

.video_advanced_4647 li:last-child {
    border-bottom: none;
}

.video_advanced_4647 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.sidebar-tall-3c95 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .sidebar-tall-3c95 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sidebar-tall-3c95 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pro_e3ea {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.pro_e3ea:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.cool-bfd2 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.cold-c42f {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.paragraph-dark-c121 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.tag-3a6f {
    font-size: 1rem;
}

.top-8053 {
    padding: 1.5rem;
}

.last-18b3 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.tooltip-6928 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.tooltip-6928 .background_full_22a2 {
    text-align: center;
}

.tooltip-6928 .accent_8f46 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.tooltip-6928 .component_stale_c682 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.focused_a0bd {
    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);
}

.focused_a0bd:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.item_advanced_e7fa {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .item_advanced_e7fa {
        grid-template-columns: repeat(4, 1fr);
    }
}

.search_c430 {
    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);
}

.search_c430:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.picture-right-b24f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.complex-40f1 {
    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);
}

.avatar_f279 {
    font-size: 2rem;
    flex-shrink: 0;
}

.block_7784 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.thumbnail-b191 {
    color: var(--text-gray);
    line-height: 1.6;
}

.active_gold_a40a {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.tall_63d6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.nav-58f1 {
    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);
}

.menu-red-9106 {
    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;
}

.menu-red-9106.avatar-b3c5 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.menu-red-9106.title_ffa5 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.menu-red-9106.description-8ac6 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.menu-red-9106.hover_bbf2 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.menu-red-9106.table_in_e7fa {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.tertiary-0a46 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.east-540a {
    color: var(--text-gray);
    line-height: 1.6;
}

.orange_9c18 {
    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);
}

.left_b53c {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.hero-fixed-4d99 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-fixed-4d99 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;
}

.hero-fixed-4d99 li:last-child {
    border-bottom: none;
}

.hero-fixed-4d99 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.feature-b0d3 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .feature-b0d3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .feature-b0d3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.out_eba7 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.out_eba7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.out_eba7.row-303b {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .out_eba7.row-303b {
        grid-column: span 3;
    }
}

.texture_80e5 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.out_eba7.row-303b .texture_80e5 {
    background: rgba(6, 182, 212, 0.1);
}

.old_1266 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.block_cold_60d9 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.out_eba7.row-303b .block_cold_60d9 {
    color: var(--info-color);
}

.badge-a2a1 {
    padding: 1.5rem;
    text-align: center;
}

.chip-wood-9c3d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.out_eba7.row-303b .chip-wood-9c3d {
    color: var(--info-color);
}

.bottom_f0e5 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.dropdown_hard_02c3 {
    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 */
.hover-0560 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .hover-0560 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.liquid-ef35 {
    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);
}

.liquid-ef35:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.logo_3d1c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.avatar-mini-ae5c {
    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);
}

.notification_clean_c0ae {
    font-size: 2rem;
    flex-shrink: 0;
}

.table-96e0 {
    flex: 1;
}

.silver_2da5 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.carousel-6d2e {
    color: var(--text-gray);
    line-height: 1.6;
}

.video_hot_ddf2 {
    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);
}

.sidebar-fa18 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.pink-0205 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.item_9ff9 {
    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);
}

.secondary_33bb {
  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);
}

.secondary_33bb .background_full_22a2 {
    text-align: center;
}

.secondary_33bb .action_0302 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.secondary_33bb .accent_8f46 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.paragraph_af33 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.background-8bcd {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pressed_8634 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.article_db94 {
    color: var(--text-gray);
    line-height: 1.6;
}

.element_top_b86e {
    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);
}

.widget_black_4c3d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.accent_wide_2df7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.fluid_b4eb {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .fluid_b4eb {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .fluid_b4eb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.banner-42c0 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.banner-42c0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.upper_9b41 {
    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);
}

.tag-up-3f21 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.gradient-wide-5b8d {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.tag_a3f3 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag_a3f3.gold-f7d1 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.tag_a3f3.wood-4a30 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.tag_a3f3.notice_tall_ad0b {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.hidden-short-e353 {
    padding: 1.5rem;
    text-align: center;
}

.motion-e49a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.button-simple-1f3e {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.button-simple-1f3e .status-steel-3c1c {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.summary-cb5f {
    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);
}

.summary-cb5f:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.panel-cold-0414 {
  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);
}

.summary_soft_58b5 {
    text-align: center;
}

.summary_soft_58b5 .action_0302 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.summary_soft_58b5 .accent_8f46 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.carousel-left-9535 { text-align: center; }
.module-4e60 { text-align: left; }
.backdrop_55ad { text-align: right; }

.left-c145 { margin-bottom: 0; }
.pattern-dark-0e0b { margin-bottom: 0.5rem; }
.panel_pro_4ed1 { margin-bottom: 1rem; }
.tooltip-02d7 { margin-bottom: 1.5rem; }
.east_ac45 { margin-bottom: 2rem; }

.logo_dirty_dc92 { margin-top: 0; }
.detail_middle_bae1 { margin-top: 0.5rem; }
.green-86e9 { margin-top: 1rem; }
.bottom-d0db { margin-top: 1.5rem; }
.up-1a4e { margin-top: 2rem; }

.fn-hidden-5ae6 { display: none; }
.fn-visible-5ae6 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .green_43bf {
        padding: 6rem 0 3rem;
    }
    
    .wrapper-45b2 {
        text-align: center;
    }
    
    .hover_liquid_3d5a {
        text-align: center;
    }
    
    .message-old-b0bf {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .caption-f357,
    .background-19c4,
    .footer_wide_0be2,
    .paragraph-b3c9 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .green_43bf {
        background: none;
    }
}

/* Providers Section */
.menu_pro_2531 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.old-9965 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .old-9965 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .old-9965 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.detail_iron_34b4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.detail_iron_34b4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.prev-5235 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pattern-small-3648 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.lite-bcf3 {
    list-style: none;
    padding: 0;
}

.lite-bcf3 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.lite-bcf3 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.frame_55f3 {
    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);
}

.frame_55f3 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.component-970d {
    padding: var(--section-padding);
}

.badge_selected_38e5 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .badge_selected_38e5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.text-f3a3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.text-f3a3:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.avatar_9e0d {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.motion-c5af {
    display: flex;
    flex-direction: column;
}

.logo-paper-4b19 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.center-5795 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.panel_fresh_7691 {
    color: var(--accent-color);
}

.gradient_64b1 {
    font-size: 1.25rem;
}

.blue_4a69 {
    margin-bottom: 1rem;
}

.blue_4a69 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.frame_red_bdba {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.shadow-cda5 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.background_full_22a2 {
    text-align: center;
}

.action_0302 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.accent_8f46 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.right_49c4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.sidebar_5233 {
    margin: 2rem 0;
}

.disabled-cold-4acc {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.disabled-cold-4acc .title_7f7e {
    font-size: 2rem;
    flex-shrink: 0;
}

.wrapper-40a4 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.icon_2170 {
    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;
}

.icon_2170:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.background-4556 {
    font-size: 2rem;
}

.label-0ab1 {
    display: flex;
    flex-direction: column;
}

.section-5db7 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.fixed-81b5 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.box_f089 {
    padding: var(--section-padding);
}

.caption-2703 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .caption-2703 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .caption-2703 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card_full_d6a8 {
    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);
}

.card_full_d6a8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.card_full_d6a8 .action_0302 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.card_full_d6a8 .accent_8f46 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.card_full_d6a8 .surface_easy_3fd6 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.feature_0869 {
    margin-top: 4rem;
}

.content-7609 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.pagination_wood_8fe5 {
    overflow-x: auto;
}

.outline-6412 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.outline-6412 thead {
    background: var(--accent-color);
}

.outline-6412 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.outline-6412 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.outline-6412 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.outline-6412 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.hero_ab9a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.stale-6ab4 {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-ded1 {
    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);
}

.accordion-ded1:hover {
    border-color: var(--accent-color);
}

.text-97a4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.text-97a4 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.main-medium-5e23 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.accordion-ded1.fn-active-5ae6 .main-medium-5e23 {
    transform: rotate(45deg);
}

.out_55a5 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.accordion-ded1.fn-active-5ae6 .out_55a5 {
    max-height: 1000px;
}

.out_55a5 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.title_silver_4e8b {
    padding: var(--section-padding);
}

.header-prev-bf17 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.complex-da1b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pattern_next_4bee {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pattern_next_4bee {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mask-c410 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.breadcrumb-1e48 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tertiary-58e3 {
    font-size: 2rem;
}

.nav_next_682f {
    color: var(--text-white);
    margin: 0;
}

.hovered-714c {
    list-style: none;
    padding: 0;
}

.hovered-714c li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hovered-714c li:last-child {
    border-bottom: none;
}

.yellow_b605 {
    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);
}

.yellow_b605 p {
    color: var(--success-color);
    margin: 0;
}

.blue_1c64 {
    margin-top: 3rem;
}

.tooltip-f0db {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.table_dark_10e3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .table_dark_10e3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pagination_4153 {
    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);
}

.widget-cb7b {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.pagination_4153 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.photo_purple_01ae {
    padding: var(--section-padding);
}

.component_top_83c4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .component_top_83c4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.basic-ba9d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.basic-ba9d:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.badge-medium-809a {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.advanced-7149 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.notice-34d0 {
    flex: 1;
}

.red_50f9 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.tag-smooth-a910 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.feature-light-bea3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.element-pink-9bc9 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.element-pink-9bc9:last-child {
    border-bottom: none;
}

/* Comparison Section */
.top_a770 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.lite-b0f2 {
    padding: var(--section-padding);
}

.alert-0e26 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.red_df3c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .red_df3c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.selected_18e1 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.info-red-f71f, .carousel_plasma_df31, .small-392f {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.small-392f {
    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 */
.picture_warm_7f17 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.main_yellow_d1c5 {
    margin: 2rem 0;
}

.shade_baaa {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.button-cf12 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.over-9ca8 {
    list-style: none;
    padding: 0;
}

.over-9ca8 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;
}

.over-9ca8 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.over-9ca8 li:last-child {
    border-bottom: none;
}

.sort-243c {
    text-align: center;
    margin-top: 2rem;
}

.advanced-3ff7 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.mini-a129 {
    padding: var(--section-padding);
}

.grid_7bcf {
    margin: 2rem 0;
}

.feature-4921 {
    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) {
    .feature-4921 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.feature-4921:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.nav-eaee {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.focus_5f50 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.layout-9138 {
    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;
}

.prev-e828 {
    flex: 1;
}

.west-66ca {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.tag-8d5b {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.north-9194 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.mask-liquid-ac1d {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .mask-liquid-ac1d {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.notification_bc7e {
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.notification_bc7e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.notification_bc7e .action_0302 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.notification_bc7e .accent_8f46 {
    color: var(--text-gray);
    font-size: 1rem;
}

.picture-warm-57c6 {
    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);
}

.badge-4c43 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.badge-4c43 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.tag_orange_0f34 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .tag_orange_0f34 {
        grid-template-columns: 1fr 1fr;
    }
}

.paragraph_left_3f41 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dropdown_9ac0 {
    margin-bottom: 1.5rem;
}

.dropdown_9ac0 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.dropdown_9ac0 input,
.dropdown_9ac0 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;
}

.dropdown_9ac0 input:focus,
.dropdown_9ac0 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.carousel_6e31 {
    width: 100%;
    margin-top: 1rem;
}

.north-54d2 {
    display: flex;
    align-items: center;
}

.outline_a48c {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.paper_8ebb {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.section_east_b968 {
    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;
}

.button-14e9 {
    color: var(--text-gray);
}

.slider_b25f {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.link_e059 {
    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);
}

.link_e059 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.paper-69b5 {
    margin-top: 3rem;
}

.surface-hard-6144 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.carousel_8a1c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.stone-6a8b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.highlight-2688 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-2688:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.copper_7e71 {
    padding: var(--section-padding);
}

.photo_small_1cca {
    margin: 2rem 0;
}

.container_fresh_2683 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.bottom-0206 {
    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;
}

.bottom-0206:hover, .bottom-0206.fn-active-5ae6 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.old-b7bf {
    display: none;
}

.old-b7bf.fn-active-5ae6 {
    display: block;
}

.tabs_892d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.silver-7d27 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.fixed_1fc4 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.fixed_1fc4 ul {
    list-style: none;
    padding: 0;
}

.fixed_1fc4 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.fixed_1fc4 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.current_779b {
    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 */
.thumbnail-6ddb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.gold_edea {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.next-a082 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.left_ebec {
    color: var(--accent-color);
    margin: 0;
}

.new-3e2c {
    display: flex;
    gap: 1.5rem;
}

.dark_a75d {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.pagination_blue_550c {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.list-copper-b81d {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.list-copper-b81d.section_895b {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.list-copper-b81d.info-fb09 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.list-copper-b81d.layout_tiny_e90d {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.modal-04eb {
    margin-top: 2rem;
}

.message-current-8a4e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.content-8368 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .content-8368 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pattern_e33f {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.focused_6cd5 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.shade_9ce9 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.modal-e5ad {
    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 */
.input_fluid_2e8c {
    padding: var(--section-padding);
}

.wide-4741 {
    margin: 2rem 0;
}

.feature-blue-c748 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.secondary_ff71 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.feature-copper-c1b4 {
    list-style: none;
    padding: 0;
}

.feature-copper-c1b4 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;
}

.feature-copper-c1b4 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.feature-copper-c1b4 li:last-child {
    border-bottom: none;
}

.background_c4f5 {
    margin: 2rem 0;
}

.progress-1257 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.article_99e8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .article_99e8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.photo-west-3a6b {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.video-6cd1 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.link_iron_ccd8 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.new-3d05 {
    margin-top: 2rem;
}

.advanced-345b {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.north-af87 {
    list-style: none;
    padding: 0;
}

.video_first_545e {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.video_first_545e a {
    color: var(--accent-color);
    text-decoration: none;
}

.video_first_545e a:hover {
    text-decoration: underline;
}

.hero-dirty-e187 {
    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 */
.input_bf1b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.column-tiny-e8d2 {
    margin: 2rem 0;
}

.video-35c0 {
    margin-bottom: 3rem;
}

.video-35c0 .button-cf12 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.smooth_d5c8 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.box-liquid-2dd4 {
    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);
}

.box-liquid-2dd4:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.silver-84de {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .silver-84de {
        grid-template-columns: repeat(4, 1fr);
    }
}

.secondary-3a60 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

/* Odds Comparison Section */
.panel-mini-1ae1 {
    padding: var(--section-padding);
}

.form_1245 {
    margin: 2rem 0;
}

.right_4df7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.border-rough-2b18 {
    overflow-x: auto;
    margin: 2rem 0;
}

.primary-rough-e6e1 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.info_prev_4c8f {
    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;
}

.pink_762d {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.hot_11ca {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .hot_11ca {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tiny-2f1c {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tiny-2f1c .title_7f7e {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.tiny-2f1c .breadcrumb_afe2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.over-ff3d {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.summary-7306 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.photo_a2a1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .photo_a2a1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.secondary_11b6 {
    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;
}

.secondary_11b6:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.column_smooth_2003 {
    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);
}

.slider-bcb1 {
    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;
}

.form-lite-e9ff {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.lower-e45a {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.hover-a344 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.right_d6e3 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.steel-728e {
    color: var(--text-white);
    font-weight: 600;
}

.tiny_85af {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.smooth_7b92 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.smooth_7b92 .alert_82cc {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.widget_warm_b495 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .widget_warm_b495 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.rough_a961 {
    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);
}

.rough_a961:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.rough_a961 .action_0302 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.rough_a961 .accent_8f46 {
    color: var(--text-gray);
    font-size: 1rem;
}

.banner_small_9cfe {
    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);
}

.picture-left-874d {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.picture-left-874d strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.backdrop_green_df90 {
    margin: 2rem 0;
}

.layout-hard-fbad {
    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);
}

.layout-hard-fbad:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.left_9ccd {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.progress_center_a375 {
    flex: 1;
}

.preview-e35c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.surface_c23b {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.gold_3393 {
    margin: 2rem 0;
}

.east-de41 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.east-de41 .breadcrumb_afe2 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.east-de41 .overlay-steel-b9a7 {
    color: var(--text-gray);
    margin: 0;
}

.thumbnail-hot-daec {
    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);
}

.thumbnail-hot-daec .smooth_abd5 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.over-ff3d {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.tabs_1aaf {
    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;
}

.plasma-5e54 {
    flex: 1;
}

.modal_top_9111 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.icon_8127 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.header_old_bdb9 {
    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;
}

.title-red-0b68 {
    flex: 1;
}

.pagination-copper-1564 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.header-blue-9471 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.notification-e792 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.article_73ad {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.gold-f46d {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.gold-f46d .alert_82cc {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.silver_00b7 {
    margin-top: 2rem;
}

.silver_00b7 .tooltip-f0db {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.panel-complex-9f0f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.preview_5c38 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .preview_5c38 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.preview_5c38 .background_full_22a2 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.search_cool_7ab4 {
    margin: 2rem 0;
}

.header-de81 {
    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 */
.item_blue_855a {
    padding: var(--section-padding);
}

.inner-2dbb {
    margin-top: 1rem;
}

.widget-north-414e {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.widget-north-414e li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.widget-north-414e li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.text-out-f5f4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.smooth_e7d2 {
    margin: 2rem 0;
}

.preview_300d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.right-0662 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.media_8d64 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.texture-b86b {
    margin: 2rem 0;
}

.accordion_f9b1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.accordion_f9b1 .button-cf12 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.gradient_stale_0b31 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .gradient_stale_0b31 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.prev_35b5 {
    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);
}

.active-48fa {
    color: var(--text-white);
    font-weight: 600;
}

.banner_c6b0 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.banner_tiny_2f8a {
    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);
}

.banner_tiny_2f8a p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.stone-cce7 {
    padding: var(--section-padding);
}

.pro-2c7e {
    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;
}

.pro-2c7e:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.slider-5fc1 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-5fc1 .widget-cb7b {
    font-size: 2rem;
    flex-shrink: 0;
}

.slider-5fc1 .old_d6a8 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.warm_9c95 {
    flex: 1;
}

.block_d405 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-df9e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-df9e li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.footer-df9e li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.advanced-05c8 {
    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);
}

.advanced-05c8 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.advanced-05c8 strong {
    color: var(--warning-color);
}

/* Slots Section */
.simple-9ae8 {
    padding: var(--section-padding);
}

.surface_3626 {
    margin: 2rem 0;
}

/* Table Games Section */
.hover-7a1a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.paper_369e {
    margin: 2rem 0;
}

.button-out-dcc4 {
    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);
}

.button-out-dcc4:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.button-out-dcc4 .paragraph-dark-c121 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.button-out-dcc4 .last-18b3 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.shadow_1802 {
    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);
}

.shadow_1802 .smooth_abd5 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.white-ca17 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.south-927f {
    margin: 2rem 0;
}

.inner-fc92 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.motion-1af0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hidden_b53e {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.grid_easy_137c {
    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);
}

.grid_easy_137c:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.grid_easy_137c.fn-active-5ae6 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.wood_5e0a {
    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);
}

.motion-44df {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.motion-44df strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.dark-e9f8 {
    padding: var(--section-padding);
}

.out_08ec {
    margin: 2rem 0;
}

.old_dd70 {
    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);
}

.old_dd70:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .old_dd70 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.aside_ce8a {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.tiny-c7c0 {
    flex: 1;
}

.iron-ae8d {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.plasma-96c7 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.element_upper_76e7 {
    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;
}

.slow-2f7e {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.dropdown-0e95 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.lite_78c7 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.widget_11c2 {
    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;
}

.widget_11c2:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.paragraph_soft_9fa5 {
    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);
}

.sidebar-2ca8 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.sidebar-2ca8 strong {
    color: var(--accent-color);
}

/* New Games Section */
.gas_c76d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.column_24f6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .column_24f6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .column_24f6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.main_hovered_130f {
    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;
}

.main_hovered_130f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.dim-3238 {
    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;
}

.dim_89a5 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.short-5990 {
    font-size: 2rem;
}

.video_e3b4 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.description-ed97 {
    flex: 1;
}

.link-inner-eaff {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.full_f107 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.last-551f {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.image-yellow-082a {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.video_outer_aa7d {
    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;
}

.up-a472 {
    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;
}

.up-a472:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.wrapper-tall-98c1 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wrapper_large_f524 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.label_bb16 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .label_bb16 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.status-8b77 {
    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);
}

.stone_a5d2 {
    color: var(--text-white);
    font-weight: 600;
}

.medium-5ce8 {
    color: var(--accent-color);
    font-weight: 600;
}

.header_74fd {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.header_74fd strong {
    color: var(--accent-color);
}

/* Security Section */
.inner_d49e {
    padding: var(--section-padding);
}

/* Benefits Section */
.component-38c4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.button-active-9f49 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.component-complex-0167 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hovered_0bb1 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.iron-176d {
    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) {
    .iron-176d {
        flex-direction: column;
        gap: 1rem;
    }
}

.iron-176d:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.iron-176d .header_old_bdb9 {
    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;
}

.iron-176d .title-red-0b68 {
    flex: 1;
}

.iron-176d .pagination-copper-1564 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.iron-176d .header-blue-9471 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.texture_60cb {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.texture_60cb .silver_2da5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.texture_60cb .widget-ea45 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.texture_60cb .widget-ea45 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.texture_60cb .widget-ea45 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.carousel-yellow-2461 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.description_short_3629 {
    padding: var(--section-padding);
}

.message_24f8 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .message_24f8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.preview_203c {
    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);
}

.preview_203c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.preview_203c .warm-bdd8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.preview_203c .preview-8f20 {
    flex: 1;
}

.preview_203c .preview-north-6e6f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.preview_203c .overlay_d1d0 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.item-6e75 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.item-6e75 .notice_509e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.item-6e75 .photo-dark-18fd {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.item-6e75 .photo-dark-18fd 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);
}

.item-6e75 .photo-dark-18fd li:last-child {
    border-bottom: none;
}

.item-6e75 .photo-dark-18fd 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;
}

.item-6e75 .photo-dark-18fd li strong {
    color: var(--text-white);
}

.glass_50ec {
    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);
}

.glass_50ec p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.glass_50ec strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.text_bright_dd66 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dropdown-533d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .dropdown-533d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.article-outer-6d64 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.article-outer-6d64:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.advanced-5211 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.list_0d1b {
    font-size: 2rem;
}

.wrapper_new_c786 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.cold_4967 {
    flex: 1;
}

.breadcrumb-7053 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-7053 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.breadcrumb-7053 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.block_over_b420 {
    margin-top: 3rem;
}

.feature-blue-c748 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.secondary_ff71 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.feature-copper-c1b4 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-copper-c1b4 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.feature-copper-c1b4 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.feature-copper-c1b4 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.slider-ecff {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.outline_9ac7 {
    margin: 2rem 0;
}

.light-9788 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.light-9788 .button-cf12 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.green_85a6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .green_85a6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tabs_0fa7 {
    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);
}

.tabs_0fa7:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.form_upper_67a0 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.slider_light_6584 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.section-4b6d {
    padding: var(--section-padding);
}

.logo-stale-f0f1 {
    margin: 2rem 0;
}

.notification_1dd9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .notification_1dd9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .notification_1dd9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.content-493f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.content-493f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.module_hot_1047 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.small-e6df {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.menu_c8e9 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.menu_c8e9.red_d40f {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.footer_93e6 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.complex_0913 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.soft_0622 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.caption-97fd {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.box_f358 {
    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);
}

.box_f358 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.box_f358 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.upper-8cf8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.list_wide_3f4f {
    margin: 2rem 0;
}

.hot-ecac {
    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) {
    .hot-ecac {
        flex-direction: column;
        gap: 1rem;
    }
}

.hot-ecac:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.hot-ecac::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);
}

.disabled-iron-bb2a {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.notification-pink-6de1 {
    flex: 1;
}

.chip_old_db75 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.card_87e6 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card_87e6 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.over-ec39 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.disabled-c6db {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.middle_0874 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .middle_0874 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.photo_e89e {
    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);
}

.rough_185b {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.module_77e4 {
    flex: 1;
}

.article_white_27d3 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.carousel-a1cf {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.mini_0c42 {
    margin-top: 2rem;
    text-align: center;
}

.last_85da {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.last_85da strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.item_advanced_e7fa {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .item_advanced_e7fa {
        grid-template-columns: repeat(4, 1fr);
    }
}

.search_c430 {
    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);
}

.search_c430:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.search_c430 .tertiary_eefa {
    font-size: 2rem;
    flex-shrink: 0;
}

.search_c430 .bottom-41d0 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.search_c430 .label-e9da {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.search_c430 .gallery_0423 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.slow-7a2e {
    padding: var(--section-padding);
}

.complex-40f1 .image_copper_20ee {
    flex: 1;
}

/* Promo Calendar Section */
.heading_54ea {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.image_lower_4b56 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .image_lower_4b56 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.section_c87d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.article_bright_8c62 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.outline_hot_b80e {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-tall-e547 {
    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);
}

.tabs_left_3b5c {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.description-orange-3293 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.photo_west_32de {
    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);
}

.photo_west_32de p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.photo_west_32de strong {
    color: var(--accent-color);
}

/* Requirements Section */
.motion-be6d {
    padding: var(--section-padding);
}

.texture_6dc8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .texture_6dc8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.bottom-28ef {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.container-d5cb {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.secondary-7c42 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.secondary-7c42 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.hidden-prev-110a {
    margin-top: 3rem;
}

.hidden-prev-110a .feature-blue-c748 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.hidden-prev-110a .secondary_ff71 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hidden-prev-110a .feature-copper-c1b4 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.hidden-prev-110a .feature-copper-c1b4 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.hidden-prev-110a .feature-copper-c1b4 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.hidden-prev-110a .feature-copper-c1b4 li strong {
    color: var(--warning-color);
}

.border_b4ee {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.border_b4ee strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.text_north_7809 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.column-north-15a7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .column-north-15a7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.accent_eff7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.accent_eff7 .button-cf12 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.pagination-copper-50c3 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gold_09b5 {
    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);
}

.gold_09b5:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.light-3559 {
    font-size: 2rem;
    flex-shrink: 0;
}

.item_lower_c012 {
    flex: 1;
}

.motion-90ec {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.media_next_d904 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.smooth-6327 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.table_fluid_b69e {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.column-gas-94c2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .column-gas-94c2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.chip-simple-513c {
    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);
}

.chip-simple-513c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.widget_next_7991 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.static_0b35 {
    color: var(--text-gray);
    font-size: 1rem;
}

.badge-4c43 {
    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);
}

.focus_lower_ce2a {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.focus_lower_ce2a strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.image_78fb { 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; }
.complex-f1e4, .sidebar_7164 { max-width:100%; height:auto; }

.lite_d417, .light_0f4e, .disabled-a502 { white-space:normal; }

.wrapper-45b2,
.hover_liquid_3d5a,
.hover-0560,
.item_advanced_e7fa,
.gold_3393,
.fluid_b4eb {
  flex-wrap:wrap;
}

[class*="grid"],
.column-gas-94c2,
.notification_1dd9,
.short-2b2e {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.green_43bf img,
.hover_liquid_3d5a img,
.lite_f7c0 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.outer_1d20, .section_9c18,
.frame-large-afd0, .hidden_43bb {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.pagination_wood_8fe5 { width:100%; overflow-x:auto; }
.pagination_wood_8fe5 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.old-9965 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .old-9965 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.detail_iron_34b4 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.caption-2703,
.mini_e45c,
.button-upper-4aef,
.aside-dirty-119b,
.mask-liquid-ac1d,
.column-gas-94c2,
.notification_1dd9,
.short-2b2e,
.panel-cold-0414,
.out_08ec,
.old-9965 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .caption-2703,
  .mini_e45c,
  .button-upper-4aef,
  .aside-dirty-119b,
  .mask-liquid-ac1d,
  .column-gas-94c2,
  .notification_1dd9,
  .short-2b2e,
  .panel-cold-0414,
  .out_08ec,
  .old-9965 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.card_full_d6a8,
.notification_bc7e,
.chip-simple-513c,
.message_fixed_92d2,
.content-493f,
.summary_soft_58b5,
.old_dd70,
.detail_iron_34b4 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.backdrop_copper_7a1b,
.primary_ba15,
.hot-80c0 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.backdrop_copper_7a1b > *,
.primary_ba15 > *,
.hot-80c0 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: c1d7 */
.promo-block-o8 {
  padding: 0.3rem;
  font-size: 11px;
  line-height: 1.3;
}
