/* {$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;
}

.overlay_3331 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.status-5e81 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .status-5e81 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .status-5e81 {
        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 */
.input-bd71 {
    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);
}

.border-pink-9070 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .border-pink-9070 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .up-38ef {
        grid-column: 1;
    }
    
    .pattern_basic_edfb {
        grid-column: 2;
    }
    
    .tabs-03c7 {
        grid-column: 3;
    }
}

.up-38ef img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.up-38ef:hover img {
    transform: scale(1.05);
}

/* Navigation */
.action_4fae {
    display: none;
}

@media (min-width: 1024px) {
    .action_4fae {
        display: block;
    }
}

/* Grouped Navigation */
.action_227e {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.icon-focused-ce4f {
    position: relative;
}

.column-1534 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.icon-focused-ce4f .title-fixed-ab9e {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.title-fixed-ab9e {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.module-758b {
    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;
}

.module-758b:hover,
.module-758b.fn-active-58d0 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.complex_7d1a {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .complex_7d1a {
        display: flex;
    }
}

/* Mobile Register Button */
.pattern_basic_edfb {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .pattern_basic_edfb {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.shade-gold-1f62 {
    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;
}

.shade-gold-1f62::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 */
.tabs-03c7 {
    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) {
    .tabs-03c7 {
        display: none;
    }
}

.tabs-03c7 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.tabs-03c7.fn-active-58d0 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.tabs-03c7.fn-active-58d0 span:nth-child(2) {
    opacity: 0;
}

.tabs-03c7.fn-active-58d0 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.preview_out_27a2 {
    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;
}

.preview_out_27a2.fn-active-58d0 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.border-d793 {
    overflow: hidden;
}

.sidebar_clean_8490 {
    list-style: none;
    padding: 0.75rem 0;
}

.description-left-8aae {
    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;
}

.description-left-8aae:hover,
.description-left-8aae.fn-active-58d0 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.description-left-8aae.hot_610b {
    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;
}

.description-left-8aae.hot_610b::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 */
.west_cc97 {
    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;
}

.next-e932 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.next-e932:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.current-9578 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.current-9578:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.slider-action-d4c6 {
    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;
}

.slider-action-d4c6:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.list-white-b270 {
    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;
}

.frame_bright_a1b3 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.frame_bright_a1b3:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.shade-large-3cbd {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.shade-large-3cbd:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.cold-ae9a {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.cold-ae9a: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);
}

.dynamic-c149 {
    font-size: 1em;
    font-weight: 700;
}

.label-prev-6130 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.border_e798 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.border_e798::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;
}

.inner-5656 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .inner-5656 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.hot_fc17 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.item-cd72 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.middle_cb2d {
    margin-bottom: 2rem;
}

.current-5174 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .current-5174 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.preview_green_fbf1 {
    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);
}

.short-d06f {
    font-size: 1.5rem;
}

.tag-green-e766 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.media_easy_9eef {
    display: flex;
    justify-content: center;
    align-items: center;
}

.secondary_d8a6 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.secondary_d8a6:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.aside_right_33a5 {
    text-align: center;
    margin-bottom: 3rem;
}

.bronze_c471 {
    margin-bottom: 1rem;
}

.column-active-dbd2 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.detail-south-c5b7 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .detail-south-c5b7 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .detail-south-c5b7.table_out_5452 {
        direction: rtl;
    }
    
    .detail-south-c5b7.table_out_5452 > * {
        direction: ltr;
    }
}

.accordion-full-b4c0 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.accordion-full-b4c0:first-child {
    margin-top: 0;
}

.new-2cab {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.picture_first_7893 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.picture_first_7893:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.wrapper-in-05a4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .wrapper-in-05a4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.icon_east_51dd {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.wide-154c {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.gradient-hard-6a90 {
    list-style: none;
}

.gradient-hard-6a90 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient-hard-6a90 li:last-child {
    border-bottom: none;
}

/* Games Features */
.action_c12c {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.frame_3a8b {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.overlay-8100 {
    font-size: 2rem;
    flex-shrink: 0;
}

.button-57f2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.complex-7a98 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.wide-b7bb {
    margin: 2rem 0;
}

.logo-83c2 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.full-477e {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.tall-aba5 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.title-dirty-7cdb {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.breadcrumb-large-72ee {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .breadcrumb-large-72ee {
        grid-template-columns: repeat(3, 1fr);
    }
}

.breadcrumb_center_7219 {
    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);
}

.breadcrumb_center_7219:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.huge_f0fa {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.active_a101 {
    font-size: 1.5rem;
}

.caption-tiny-efec {
    color: var(--accent-color);
    margin: 0;
}

.hover-wood-bea2 {
    list-style: none;
}

.hover-wood-bea2 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.hover-wood-bea2 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.info-pressed-a685 {
    margin: 2rem 0;
}

.lower-f8c3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.badge-c626 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .badge-c626 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.label_prev_7243 {
    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);
}

.carousel_0cd2 {
    font-size: 1.25rem;
}

.wide-5b9b {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.narrow_72a1,
.simple-4d1b {
    text-align: center;
    margin: 2rem 0;
}

.active_next_ac4c,
.gallery_c499 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.selected_cea3 {
    margin: 2rem 0;
    text-align: center;
}

.north_fccc {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.north_fccc::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;
}

.feature-d568 {
    position: relative;
    z-index: 1;
}

.article_small_982a {
    margin-bottom: 1rem;
}

.medium-e9f1 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pink-1d1b {
    margin-bottom: 3rem;
}

.card-4fcc {
    margin-top: 3rem;
}

.tertiary-silver-de10 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .tertiary-silver-de10 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tertiary-silver-de10 .preview_green_fbf1 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.table-f4c8 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.container-silver-8aa5 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.nav-d2eb {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.hard_a2d3 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .hard_a2d3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hard_a2d3 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.first_5df3 {
    margin-bottom: 1rem;
}

.fixed_9ca3 img {
    margin-bottom: 1rem;
}

.first-eeed {
    color: var(--text-gray);
    line-height: 1.6;
}

.progress_bottom_1f73 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.main-3d70 {
    list-style: none;
}

.main-3d70 li {
    margin-bottom: 0.5rem;
}

.main-3d70 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.main-3d70 a:hover {
    color: var(--accent-color);
}

.box-hard-796d {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.wood-5ccd {
    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);
}

.wood-5ccd:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.tag_3dd1 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.tag_3dd1 p {
    margin-bottom: 0.25rem;
}

.gradient-04e2 {
    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) {
    .gradient-04e2 {
        flex-direction: row;
    }
}

.primary-7b35 {
    text-align: center;
}

@media (min-width: 768px) {
    .primary-7b35 {
        text-align: left;
    }
}

.primary-7b35 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.purple-4e46 {
    font-size: 0.75rem !important;
}

.text_c30b {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.box-left-627c {
    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);
    }
}

.preview-2e0f {
    animation: fadeInUp 0.6s ease-out;
}

.widget-full-e383 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.smooth-ca1c {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .smooth-ca1c {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.left_9738 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .left_9738 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tag-liquid-ab54 {
    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);
}

.tag-liquid-ab54 .overlay-8100 {
    font-size: 1.25rem;
}

.tag-liquid-ab54 .element-4bdd {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.iron-5461 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .iron-5461 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hovered-234a {
    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);
}

.hovered-234a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.primary-4316 {
    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);
}

.dark-4ed9 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.layout_b055 {
    color: var(--text-gray);
    line-height: 1.6;
}

.info-7ce8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pressed_de2e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.pressed_de2e .button-57f2 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.pressed_de2e .complex-7a98 {
    color: var(--text-gray);
    line-height: 1.6;
}

.search_liquid_e9a8 {
    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);
}

.background_1d33 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.background_1d33 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.background_1d33 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.plasma-0c3c {
    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);
}

.small-2d8e {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.fluid_4dff {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.fluid_4dff label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.fluid_4dff 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);
}

.fluid_4dff input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.fluid_4dff input::placeholder {
    color: var(--text-muted);
}

.primary_926c {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.surface-45f9 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.surface-45f9 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.pink_017b {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.pink_017b:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.badge-c626 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .badge-c626 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.label_prev_7243 {
    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);
}

.label_prev_7243 .carousel_0cd2 {
    font-size: 1.25rem;
}

.label_prev_7243 .wide-5b9b {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.logo_696f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.bright-225d {
    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);
}

.bright-225d .overlay-8100 {
    font-size: 2rem;
    flex-shrink: 0;
}

.bright-225d .button-57f2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.bright-225d .complex-7a98 {
    color: var(--text-gray);
    line-height: 1.6;
}

.frame_short_fb07 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.paragraph-lower-77c5 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.paragraph-lower-77c5 .component_down_f424 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.paragraph-lower-77c5 .green-8545 {
    color: var(--text-gray);
    line-height: 1.6;
}

.form_huge_e860 {
    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);
}

.wide-66ce {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .wide-66ce {
        grid-template-columns: repeat(3, 1fr);
    }
}

.clean-d7b8 {
    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);
}

.clean-d7b8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.heading_first_0ee2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hidden-a3e4 {
    flex: 1;
}

.overlay_74e2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.inner_35b5 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tall-8abf {
    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);
}

.tall-8abf:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.header-paper-03c1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .header-paper-03c1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fixed-05c8 {
    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);
}

.fixed-05c8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pro_482b {
    font-size: 2rem;
    flex-shrink: 0;
}

.badge-2926 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.full_42ea {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.out_6bf5 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.element-e949 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.old_e5cb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.message_active_8f0f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.message_active_8f0f .heading-wood-5c86 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.message_active_8f0f .logo-brown-97d5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.easy-1f51 {
    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);
}

.background_e6cc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.notice_warm_976d {
    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);
}

.notice_warm_976d .overlay-8100 {
    font-size: 2rem;
    flex-shrink: 0;
}

.notice_warm_976d .button-57f2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.notice_warm_976d .complex-7a98 {
    color: var(--text-gray);
    line-height: 1.6;
}

.detail-liquid-5138 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .detail-liquid-5138 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.disabled-6191 {
    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);
}

.disabled-6191:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.rough-1f81 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .rough-1f81 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.solid_14a1 {
    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);
}

.solid_14a1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.glass-ef59 {
    font-size: 2rem;
    flex-shrink: 0;
}

.first-a098 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.full-477e {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.avatar_19dd {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.first_c829 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.avatar_8b55 {
    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);
}

.avatar_8b55:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.up-3f93 {
    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_5993 {
    flex: 1;
}

.button_simple_e664 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.left_8424 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.grid-simple-7139 {
    color: var(--text-gray);
    line-height: 1.6;
}

.selected-6099 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.black-ccbf {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.black-ccbf .component_down_f424 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.black-ccbf .green-8545 {
    color: var(--text-gray);
    line-height: 1.6;
}

.simple-4d1b {
    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);
}

.gallery-8a7f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gallery-8a7f {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.easy-fb0b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .easy-fb0b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card_liquid_73b6 {
    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);
}

.card_liquid_73b6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.label-hard-8f0a {
    font-size: 2rem;
    flex-shrink: 0;
}

.layout_d201 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-wide-7260 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.pagination-ec59 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.disabled-bf39 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.simple-d36a {
    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);
}

.easy_83f3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.message_a409 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.main_cool_a4b7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.background_e6cc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.notice_warm_976d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.notice_warm_976d .button-57f2 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.notice_warm_976d .complex-7a98 {
    color: var(--text-gray);
    line-height: 1.6;
}

.prev-28bb {
    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);
}

.clean-f25f {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .clean-f25f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .clean-f25f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tertiary_rough_a5af {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.tertiary_rough_a5af:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.card_fixed_34e0 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.texture_selected_dac4 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.static-b4dc {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.highlight_hard_eec2 {
    padding: 1.5rem;
}

.backdrop-west-3937 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.south_02b7 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.south_02b7 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.south_02b7 li:last-child {
    border-bottom: none;
}

.south_02b7 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.tabs_c4c6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tabs_c4c6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.disabled_fast_b8a4 {
    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);
}

.disabled_fast_b8a4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.card_orange_b38c {
    font-size: 2rem;
    flex-shrink: 0;
}

.filter-2bfd {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.component_c3fe {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.row-d6bb {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.dropdown-paper-47a3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.popup_wide_593b {
    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);
}

.advanced-5b73 {
    font-size: 2rem;
    flex-shrink: 0;
}

.menu_d6cc {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.menu-7aeb {
    color: var(--text-gray);
    line-height: 1.6;
}

.lower_13b5 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.red_160e {
    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);
}

.picture_0cab {
    text-align: center;
}

.wide_76d7 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.shadow-green-6521 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.active_0c6f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.overlay-5637 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.overlay-5637 .button-57f2 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.overlay-5637 .complex-7a98 {
    color: var(--text-gray);
    line-height: 1.6;
}

.texture-7bde {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .texture-7bde {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .texture-7bde {
        grid-template-columns: repeat(4, 1fr);
    }
}

.slider_fa81 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.slider_fa81:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tertiary_2b1b {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.primary-static-08ac {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.button-57f2 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.widget_focused_fb82 {
    padding: 1.5rem;
}

.complex-7a98 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.list_light_0458 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list_light_0458 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.list_light_0458 li:last-child {
    border-bottom: none;
}

.list_light_0458 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.slider_prev_07db {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.link_rough_a9f2 {
    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);
}

.link_rough_a9f2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.badge-f191 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.secondary-4c47 {
    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);
}

.primary-4316 {
    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;
}

.dark-4ed9 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.layout_b055 {
    color: var(--text-gray);
    line-height: 1.6;
}

.container_prev_1b73 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.breadcrumb-brown-046b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.breadcrumb-red-11c4 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.purple_8727 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.popup-0aff {
    display: flex;
    gap: 1rem;
}

.popup-0aff .filter_bronze_3f0f {
    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;
}

.media-black-6053 {
    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);
}

.wide_b416 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.photo_b4b1 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.photo_b4b1 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;
}

.photo_b4b1 li:last-child {
    border-bottom: none;
}

.photo_b4b1 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.sidebar-stale-c879 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .sidebar-stale-c879 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sidebar-stale-c879 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.east-5cbc {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.east-5cbc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.static-17ab {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.footer-f5bf {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.heading-wood-5c86 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.widget_out_3f9a {
    font-size: 1rem;
}

.aside-2e08 {
    padding: 1.5rem;
}

.logo-brown-97d5 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.column-03d5 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.column-03d5 .picture_0cab {
    text-align: center;
}

.column-03d5 .shadow-green-6521 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.column-03d5 .picture_dark_5cc4 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.footer_34aa {
    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);
}

.footer_34aa:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.alert-178d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .alert-178d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.right_69c2 {
    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);
}

.right_69c2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.video-861d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.filter_ebf1 {
    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);
}

.west-e6c3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.gradient_42d9 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.heading-e04d {
    color: var(--text-gray);
    line-height: 1.6;
}

.icon_b69c {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.basic-5bab {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.stone_c0a0 {
    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);
}

.shadow_1971 {
    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;
}

.shadow_1971.widget-mini-5337 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.shadow_1971.lite_2e99 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.shadow_1971.popup_fea5 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.shadow_1971.gallery_smooth_585b {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.shadow_1971.shade-ac49 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.large_db7e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.progress-dirty-2619 {
    color: var(--text-gray);
    line-height: 1.6;
}

.iron_3b29 {
    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);
}

.filter_0d1c {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.frame_short_fb07 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.frame_short_fb07 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.frame_short_fb07 li:last-child {
    border-bottom: none;
}

.frame_short_fb07 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.module_dcc8 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .module_dcc8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .module_dcc8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.clean-2598 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.clean-2598:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.clean-2598.accent-2f25 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .clean-2598.accent-2f25 {
        grid-column: span 3;
    }
}

.status_acf8 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.clean-2598.accent-2f25 .status_acf8 {
    background: rgba(6, 182, 212, 0.1);
}

.stone-1c99 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.grid-top-678e {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.clean-2598.accent-2f25 .grid-top-678e {
    color: var(--info-color);
}

.down-c97f {
    padding: 1.5rem;
    text-align: center;
}

.huge-be48 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.clean-2598.accent-2f25 .huge-be48 {
    color: var(--info-color);
}

.breadcrumb-e46a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.notification_fixed_cf1c {
    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 */
.yellow_d331 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .yellow_d331 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.button-tall-871f {
    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);
}

.button-tall-871f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.disabled-middle-785b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.bright-225d {
    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);
}

.carousel_0cd2 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tertiary_full_6c72 {
    flex: 1;
}

.lower-f8c3 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.logo-in-b901 {
    color: var(--text-gray);
    line-height: 1.6;
}

.paper-ab90 {
    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);
}

.grid-fe3d {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.box_1f3a {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.box-left-627c {
    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);
}

.item_0c0f {
  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);
}

.item_0c0f .picture_0cab {
    text-align: center;
}

.item_0c0f .wide_76d7 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.item_0c0f .shadow-green-6521 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.pink_9dc5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.mask_3adf {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shade_out_5fce {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.column-large-4062 {
    color: var(--text-gray);
    line-height: 1.6;
}

.slider_fa09 {
    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);
}

.video_4265 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.widget-first-45a8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.fixed_1b6c {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .fixed_1b6c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .fixed_1b6c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.carousel_1e77 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.carousel_1e77:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.detail_4002 {
    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);
}

.footer_wide_ecc4 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.notification-baec {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.wood_b97c {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wood_b97c.progress-da93 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.wood_b97c.message-4e7f {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.wood_b97c.current_d1e1 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.over_e3d6 {
    padding: 1.5rem;
    text-align: center;
}

.caption_7e61 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.fast-33cb {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.fast-33cb .link-up-977b {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.smooth_c22b {
    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);
}

.smooth_c22b:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.overlay-660c {
  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);
}

.out-cb37 {
    text-align: center;
}

.out-cb37 .wide_76d7 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.out-cb37 .shadow-green-6521 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.module-stone-6cc1 { text-align: center; }
.stone-1040 { text-align: left; }
.middle-f299 { text-align: right; }

.video-ef32 { margin-bottom: 0; }
.nav-a30e { margin-bottom: 0.5rem; }
.column-static-4d5d { margin-bottom: 1rem; }
.out-8725 { margin-bottom: 1.5rem; }
.image-fast-898b { margin-bottom: 2rem; }

.carousel-dynamic-fc48 { margin-top: 0; }
.column-steel-8eeb { margin-top: 0.5rem; }
.gas_2430 { margin-top: 1rem; }
.column-2de4 { margin-top: 1.5rem; }
.panel_pink_cb83 { margin-top: 2rem; }

.fn-hidden-58d0 { display: none; }
.fn-visible-58d0 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .border_e798 {
        padding: 6rem 0 3rem;
    }
    
    .inner-5656 {
        text-align: center;
    }
    
    .detail-south-c5b7 {
        text-align: center;
    }
    
    .current-5174 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .input-bd71,
    .preview_out_27a2,
    .north_fccc,
    .nav-d2eb {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .border_e798 {
        background: none;
    }
}

/* Providers Section */
.tertiary_fresh_a8f5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pressed_551d {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pressed_551d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pressed_551d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stone-a05c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.stone-a05c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.component-fe82 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.filter_black_53ca {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.action-64a7 {
    list-style: none;
    padding: 0;
}

.action-64a7 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.action-64a7 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.tertiary-70b2 {
    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);
}

.tertiary-70b2 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.tag-left-bf81 {
    padding: var(--section-padding);
}

.form_48ec {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .form_48ec {
        grid-template-columns: repeat(3, 1fr);
    }
}

.top_c910 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.top_c910:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.red_2cf0 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.lite_d431 {
    display: flex;
    flex-direction: column;
}

.alert-f67c {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.card_cc3f {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.label-silver-e82b {
    color: var(--accent-color);
}

.highlight_0d59 {
    font-size: 1.25rem;
}

.yellow-547a {
    margin-bottom: 1rem;
}

.yellow-547a p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.hidden-c769 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.light-15b5 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.picture_0cab {
    text-align: center;
}

.wide_76d7 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.shadow-green-6521 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.copper-e6b2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.component-8143 {
    margin: 2rem 0;
}

.out_1157 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.out_1157 .overlay-8100 {
    font-size: 2rem;
    flex-shrink: 0;
}

.title_0654 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.background_black_7a26 {
    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;
}

.background_black_7a26:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.button-yellow-9ad1 {
    font-size: 2rem;
}

.slow-df4d {
    display: flex;
    flex-direction: column;
}

.stale-6570 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.smooth-f1a7 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.short_e549 {
    padding: var(--section-padding);
}

.under_377b {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .under_377b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .under_377b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.progress_55d1 {
    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);
}

.progress_55d1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.progress_55d1 .wide_76d7 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.progress_55d1 .shadow-green-6521 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.progress_55d1 .pro_0541 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.pattern_9240 {
    margin-top: 4rem;
}

.action_fe71 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.static_ccb7 {
    overflow-x: auto;
}

.cool-8852 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.cool-8852 thead {
    background: var(--accent-color);
}

.cool-8852 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.cool-8852 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.cool-8852 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.cool-8852 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.input_a64a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.table-ad97 {
    max-width: 900px;
    margin: 0 auto;
}

.card-north-30f3 {
    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);
}

.card-north-30f3:hover {
    border-color: var(--accent-color);
}

.surface_303e {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.surface_303e h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.header-0b67 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.card-north-30f3.fn-active-58d0 .header-0b67 {
    transform: rotate(45deg);
}

.purple_5154 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.card-north-30f3.fn-active-58d0 .purple_5154 {
    max-height: 1000px;
}

.purple_5154 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.focused_3199 {
    padding: var(--section-padding);
}

.background_1d33 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.tooltip-ca5d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.layout_fd51 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .layout_fd51 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tertiary_aadf {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.mask-tall-cbce {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.fluid-566c {
    font-size: 2rem;
}

.sidebar-medium-0921 {
    color: var(--text-white);
    margin: 0;
}

.item-north-0d1b {
    list-style: none;
    padding: 0;
}

.item-north-0d1b li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.item-north-0d1b li:last-child {
    border-bottom: none;
}

.overlay_c1cb {
    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);
}

.overlay_c1cb p {
    color: var(--success-color);
    margin: 0;
}

.badge-9b5c {
    margin-top: 3rem;
}

.wide_b416 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.fixed-af17 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .fixed-af17 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.frame_north_9dd3 {
    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);
}

.fixed-c92c {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.frame_north_9dd3 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.background-red-0d17 {
    padding: var(--section-padding);
}

.banner-in-ff8e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .banner-in-ff8e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.in-5481 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.in-5481:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.left_fb3d {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.layout-40c5 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.orange_f217 {
    flex: 1;
}

.photo-6ba6 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.wrapper-255d {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.south_3ed2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.feature-brown-2fe8 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-brown-2fe8:last-child {
    border-bottom: none;
}

/* Comparison Section */
.motion-ff73 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.link_gas_22af {
    padding: var(--section-padding);
}

.new_4fc2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.box-wood-81d9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .box-wood-81d9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.search-small-e5ad {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.active-df26, .footer_cdc6, .motion_0f03 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.motion_0f03 {
    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 */
.current-8693 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.logo-hard-eea9 {
    margin: 2rem 0;
}

.next_3fa6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.filter-bronze-e8ad {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.gradient_8296 {
    list-style: none;
    padding: 0;
}

.gradient_8296 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;
}

.gradient_8296 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.gradient_8296 li:last-child {
    border-bottom: none;
}

.main-last-23bb {
    text-align: center;
    margin-top: 2rem;
}

.filter_1954 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.section_upper_5449 {
    padding: var(--section-padding);
}

.white-d8dd {
    margin: 2rem 0;
}

.sidebar_east_02df {
    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) {
    .sidebar_east_02df {
        flex-direction: column;
        align-items: flex-start;
    }
}

.sidebar_east_02df:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.gallery-22da {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.info_3283 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.thumbnail_5417 {
    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;
}

.black_934f {
    flex: 1;
}

.aside_caa9 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.progress_7427 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.mask_center_3e38 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.title-0338 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .title-0338 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.block_first_21e0 {
    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);
}

.block_first_21e0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.block_first_21e0 .wide_76d7 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.block_first_21e0 .shadow-green-6521 {
    color: var(--text-gray);
    font-size: 1rem;
}

.disabled-lower-ec3d {
    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);
}

.sort-upper-dbb8 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.sort-upper-dbb8 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.avatar_2005 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .avatar_2005 {
        grid-template-columns: 1fr 1fr;
    }
}

.feature_1433 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dynamic-307c {
    margin-bottom: 1.5rem;
}

.dynamic-307c label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.dynamic-307c input,
.dynamic-307c 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;
}

.dynamic-307c input:focus,
.dynamic-307c select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.hidden-down-bd9f {
    width: 100%;
    margin-top: 1rem;
}

.accent-stone-d385 {
    display: flex;
    align-items: center;
}

.logo-35d2 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.full-945f {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.old-77c0 {
    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;
}

.blue_3095 {
    color: var(--text-gray);
}

.light_e4be {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.steel-03e8 {
    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);
}

.steel-03e8 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.aside-hard-bf31 {
    margin-top: 3rem;
}

.copper_64c0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.feature-426f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.background_first_a2dc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.basic-7be1 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.basic-7be1:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.main_2fe7 {
    padding: var(--section-padding);
}

.status-fa1c {
    margin: 2rem 0;
}

.banner_bronze_47f6 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.fixed-674c {
    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;
}

.fixed-674c:hover, .fixed-674c.fn-active-58d0 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.content-advanced-6a2c {
    display: none;
}

.content-advanced-6a2c.fn-active-58d0 {
    display: block;
}

.pagination-1e2e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.info_80e4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.slider-bright-3cda h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.slider-bright-3cda ul {
    list-style: none;
    padding: 0;
}

.slider-bright-3cda ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.slider-bright-3cda ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.title_3c1c {
    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 */
.over-8879 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.input-8706 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.table_tall_f94e {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.summary_north_2fc6 {
    color: var(--accent-color);
    margin: 0;
}

.border_9290 {
    display: flex;
    gap: 1.5rem;
}

.easy_556a {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.layout-clean-38d9 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.disabled_dirty_3d50 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.disabled_dirty_3d50.pink_1be4 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.disabled_dirty_3d50.hot-397b {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.disabled_dirty_3d50.notification-3f34 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.sidebar-b13f {
    margin-top: 2rem;
}

.component_over_2651 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.focus_d385 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .focus_d385 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tabs-dbb8 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.wide-e517 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.solid_066c {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.element_fd62 {
    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 */
.motion-e96b {
    padding: var(--section-padding);
}

.upper-1f8b {
    margin: 2rem 0;
}

.up-f19d {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.mini_01df {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.block_green_7828 {
    list-style: none;
    padding: 0;
}

.block_green_7828 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;
}

.block_green_7828 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.block_green_7828 li:last-child {
    border-bottom: none;
}

.overlay-8779 {
    margin: 2rem 0;
}

.focus_first_61b4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.media_5883 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .media_5883 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.content-d3f3 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.focus-north-0c1a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tiny-8ca0 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.motion_a8ea {
    margin-top: 2rem;
}

.overlay_74e2 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.footer-a3ac {
    list-style: none;
    padding: 0;
}

.large-f174 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.large-f174 a {
    color: var(--accent-color);
    text-decoration: none;
}

.large-f174 a:hover {
    text-decoration: underline;
}

.accent-6db9 {
    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 */
.out_6e00 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.overlay-6ee4 {
    margin: 2rem 0;
}

.item_be7f {
    margin-bottom: 3rem;
}

.item_be7f .filter-bronze-e8ad {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.element_be88 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.disabled-f64b {
    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);
}

.disabled-f64b:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.element-99d2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .element-99d2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-fluid-08b5 {
    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 */
.container_large_341e {
    padding: var(--section-padding);
}

.secondary-4241 {
    margin: 2rem 0;
}

.action-abdb {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.content-bronze-c272 {
    overflow-x: auto;
    margin: 2rem 0;
}

.heading-3766 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.message-slow-dc47 {
    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;
}

.hidden-cold-7641 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.filter-static-15ea {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .filter-static-15ea {
        grid-template-columns: repeat(3, 1fr);
    }
}

.green_9669 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.green_9669 .overlay-8100 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.green_9669 .button-57f2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.title_33d1 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.filter-wood-adce {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.old-c044 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .old-c044 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pattern-8029 {
    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;
}

.pattern-8029:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.prev-9a28 {
    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);
}

.text_large_bf35 {
    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;
}

.photo_glass_ea42 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.panel_active_ceb1 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.panel-outer-24f7 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.thick-a039 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.liquid-d152 {
    color: var(--text-white);
    font-weight: 600;
}

.solid-3503 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.tiny-a857 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tiny-a857 .filter_bronze_3f0f {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.blue-e914 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .blue-e914 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.list_lite_dc58 {
    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);
}

.list_lite_dc58:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.list_lite_dc58 .wide_76d7 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.list_lite_dc58 .shadow-green-6521 {
    color: var(--text-gray);
    font-size: 1rem;
}

.title_cf04 {
    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);
}

.menu_north_8580 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.menu_north_8580 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.disabled-bf39 {
    margin: 2rem 0;
}

.simple-d36a {
    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);
}

.simple-d36a:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.easy_83f3 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.hard-7bc9 {
    flex: 1;
}

.message_a409 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.main_cool_a4b7 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.background_e6cc {
    margin: 2rem 0;
}

.notice_warm_976d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.notice_warm_976d .button-57f2 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.notice_warm_976d .complex-7a98 {
    color: var(--text-gray);
    margin: 0;
}

.prev-28bb {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.prev-28bb .active_next_ac4c {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.title_33d1 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.up-3f93 {
    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_5993 {
    flex: 1;
}

.left_8424 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.grid-simple-7139 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.primary-4316 {
    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;
}

.red_759a {
    flex: 1;
}

.dark-4ed9 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.layout_b055 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.breadcrumb-red-11c4 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.purple_8727 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.popup-0aff {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.popup-0aff .filter_bronze_3f0f {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.media-black-6053 {
    margin-top: 2rem;
}

.media-black-6053 .wide_b416 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.disabled-a614 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.red_160e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .red_160e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.red_160e .picture_0cab {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.active_0c6f {
    margin: 2rem 0;
}

.overlay-5637 {
    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 */
.avatar-black-bf9e {
    padding: var(--section-padding);
}

.widget_focused_fb82 {
    margin-top: 1rem;
}

.list_light_0458 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.list_light_0458 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.list_light_0458 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.active_dbe5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dropdown_3513 {
    margin: 2rem 0;
}

.article-dark-c973 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.smooth_1f35 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.dim_29c4 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.large-4abc {
    margin: 2rem 0;
}

.container_right_4950 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.container_right_4950 .filter-bronze-e8ad {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.dirty-f012 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .dirty-f012 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.highlight_c0ac {
    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);
}

.cool-45d6 {
    color: var(--text-white);
    font-weight: 600;
}

.fast_074b {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.basic-1265 {
    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);
}

.basic-1265 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.copper_d79f {
    padding: var(--section-padding);
}

.label-5d1a {
    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;
}

.label-5d1a:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.frame-c48c {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.frame-c48c .fixed-c92c {
    font-size: 2rem;
    flex-shrink: 0;
}

.frame-c48c .content-wood-c149 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.slider_over_e798 {
    flex: 1;
}

.bronze_fc17 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.box-narrow-2371 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.box-narrow-2371 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.box-narrow-2371 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.inner_3a1b {
    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);
}

.inner_3a1b p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.inner_3a1b strong {
    color: var(--warning-color);
}

/* Slots Section */
.pagination_current_0a52 {
    padding: var(--section-padding);
}

.element-e949 {
    margin: 2rem 0;
}

/* Table Games Section */
.soft_e739 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.old_e5cb {
    margin: 2rem 0;
}

.message_active_8f0f {
    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);
}

.message_active_8f0f:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.message_active_8f0f .heading-wood-5c86 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.message_active_8f0f .logo-brown-97d5 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.easy-1f51 {
    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);
}

.easy-1f51 .active_next_ac4c {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.accordion-036f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.link_f0ac {
    margin: 2rem 0;
}

.nav_last_7211 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.brown_e293 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.disabled_copper_e74b {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.inner_5d11 {
    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);
}

.inner_5d11:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.inner_5d11.fn-active-58d0 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gold-fdbc {
    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);
}

.row-6bf1 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.row-6bf1 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.carousel-advanced-2635 {
    padding: var(--section-padding);
}

.wrapper_e0f6 {
    margin: 2rem 0;
}

.tabs-medium-5602 {
    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);
}

.tabs-medium-5602:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .tabs-medium-5602 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.menu_next_a243 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.shade_pressed_cb57 {
    flex: 1;
}

.button-4c33 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.disabled-7277 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.slider-cold-4909 {
    padding: 0.375rem 0.875rem;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    color: var(--primary-bg);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.breadcrumb-4c21 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.article_ec1f {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.primary_1485 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.outline-4461 {
    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;
}

.outline-4461:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.dirty_4b1f {
    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);
}

.tooltip_outer_d1d7 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.tooltip_outer_d1d7 strong {
    color: var(--accent-color);
}

/* New Games Section */
.active_stone_ca4d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.black_0386 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .black_0386 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .black_0386 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.alert_ddd9 {
    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;
}

.alert_ddd9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.photo_first_d7a1 {
    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;
}

.cold-e9db {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.bronze_955f {
    font-size: 2rem;
}

.shade-8f2b {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.main-42eb {
    flex: 1;
}

.popup_middle_07e6 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.component_ec84 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.basic_e22f {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.south-b905 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.dynamic_7aaa {
    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;
}

.text_huge_4ebd {
    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;
}

.text_huge_4ebd:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.heading-9212 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.warm-aa58 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.overlay_static_7bf5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .overlay_static_7bf5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.widget-fixed-61f1 {
    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);
}

.clean-5d92 {
    color: var(--text-white);
    font-weight: 600;
}

.alert_old_d83f {
    color: var(--accent-color);
    font-weight: 600;
}

.table-d2a6 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.table-d2a6 strong {
    color: var(--accent-color);
}

/* Security Section */
.image-19e3 {
    padding: var(--section-padding);
}

/* Benefits Section */
.hero-8fab {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.progress-0385 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.silver-1dd6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.summary-bottom-f4f4 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.shade-ee32 {
    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) {
    .shade-ee32 {
        flex-direction: column;
        gap: 1rem;
    }
}

.shade-ee32:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.shade-ee32 .primary-4316 {
    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;
}

.shade-ee32 .red_759a {
    flex: 1;
}

.shade-ee32 .dark-4ed9 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.shade-ee32 .layout_b055 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.old-b125 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.old-b125 .lower-f8c3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.old-b125 .logo_696f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.old-b125 .logo_696f li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.old-b125 .logo_696f li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.brown_8a7f {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.cool-4b0c {
    padding: var(--section-padding);
}

.down_704a {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .down_704a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stale-5c25 {
    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);
}

.stale-5c25:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.stale-5c25 .dirty_d6f7 {
    font-size: 2rem;
    flex-shrink: 0;
}

.stale-5c25 .active-south-db76 {
    flex: 1;
}

.stale-5c25 .component_down_f424 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.stale-5c25 .info-2d9f {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.fresh-dc3e {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.fresh-dc3e .hover-bronze-73fc {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.fresh-dc3e .backdrop_1738 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.fresh-dc3e .backdrop_1738 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);
}

.fresh-dc3e .backdrop_1738 li:last-child {
    border-bottom: none;
}

.fresh-dc3e .backdrop_1738 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;
}

.fresh-dc3e .backdrop_1738 li strong {
    color: var(--text-white);
}

.black_2c7a {
    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);
}

.black_2c7a p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.black_2c7a strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.surface_134b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.search_e977 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .search_e977 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.lite-c8fa {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.lite-c8fa:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.shade_ace5 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.silver-340d {
    font-size: 2rem;
}

.media-bottom-7da1 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.fluid-c976 {
    flex: 1;
}

.small_a58f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.small_a58f li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.small_a58f li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.avatar_center_2d06 {
    margin-top: 3rem;
}

.up-f19d {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.mini_01df {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.block_green_7828 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.block_green_7828 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.block_green_7828 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.block_green_7828 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.box-north-16e3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.lite-e7db {
    margin: 2rem 0;
}

.notice_blue_88b3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.notice_blue_88b3 .filter-bronze-e8ad {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tabs-65df {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .tabs-65df {
        grid-template-columns: repeat(2, 1fr);
    }
}

.secondary_9ada {
    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);
}

.secondary_9ada:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.top_f6a5 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.progress-172c {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.notification_pressed_78c9 {
    padding: var(--section-padding);
}

.text_aa1e {
    margin: 2rem 0;
}

.button-2e0b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .button-2e0b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .button-2e0b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bottom_ff15 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.bottom_ff15:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.current-dacd {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.white_f3d3 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.alert-e5c7 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.alert-e5c7.detail_9019 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.search-1ee5 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.up-a653 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.detail-4e03 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.panel_437a {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.summary_eaed {
    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);
}

.summary_eaed p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.summary_eaed strong {
    color: var(--accent-color);
}

/* Update Log Section */
.texture_fluid_e955 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.column_current_c312 {
    margin: 2rem 0;
}

.complex-2eab {
    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) {
    .complex-2eab {
        flex-direction: column;
        gap: 1rem;
    }
}

.complex-2eab:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.complex-2eab::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);
}

.slider-medium-bd89 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.text_huge_c03c {
    flex: 1;
}

.header_92b4 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.stone_dfa8 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stone_dfa8 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.pink-513b {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.content_beb0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.nav_a36c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .nav_a36c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.summary_purple_a6b9 {
    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);
}

.main_366a {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.box_680f {
    flex: 1;
}

.outline_bca7 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.link-clean-456f {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.hidden-87cc {
    margin-top: 2rem;
    text-align: center;
}

.white-e218 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.white-e218 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.alert-178d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .alert-178d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.right_69c2 {
    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);
}

.right_69c2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.right_69c2 .card_orange_b38c {
    font-size: 2rem;
    flex-shrink: 0;
}

.right_69c2 .filter-2bfd {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.right_69c2 .component_c3fe {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.right_69c2 .row-d6bb {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.bronze_cf89 {
    padding: var(--section-padding);
}

.filter_ebf1 .blue-0bfa {
    flex: 1;
}

/* Promo Calendar Section */
.widget-focused-8d57 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.column_8dfc {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .column_8dfc {
        grid-template-columns: repeat(3, 1fr);
    }
}

.input_7443 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.row_simple_e0e9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.stone-33ec {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.overlay-huge-dea0 {
    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);
}

.focus-05c4 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.photo_2c81 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.content_50dc {
    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);
}

.content_50dc p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.content_50dc strong {
    color: var(--accent-color);
}

/* Requirements Section */
.card_light_e545 {
    padding: var(--section-padding);
}

.footer_7286 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .footer_7286 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.action-bd5b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.primary_556b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.next-35ac {
    list-style: none;
    padding: 0;
    margin: 0;
}

.next-35ac li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.dynamic_af6d {
    margin-top: 3rem;
}

.dynamic_af6d .up-f19d {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.dynamic_af6d .mini_01df {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.dynamic_af6d .block_green_7828 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.dynamic_af6d .block_green_7828 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.dynamic_af6d .block_green_7828 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.dynamic_af6d .block_green_7828 li strong {
    color: var(--warning-color);
}

.avatar-68fb {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.avatar-68fb strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.right-5092 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.overlay_soft_3e7b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .overlay_soft_3e7b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.text_fast_18cc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.text_fast_18cc .filter-bronze-e8ad {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.footer-pressed-ada7 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.photo-c76a {
    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);
}

.photo-c76a:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.medium-fb4e {
    font-size: 2rem;
    flex-shrink: 0;
}

.progress-f40c {
    flex: 1;
}

.shadow_0df8 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.info_c5ca {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.description-9986 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.stone-acc9 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.bright_9305 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .bright_9305 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.notification_lite_f672 {
    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_lite_f672:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.disabled_center_f5e8 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.preview-lite-d29e {
    color: var(--text-gray);
    font-size: 1rem;
}

.sort-upper-dbb8 {
    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);
}

.clean-de70 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.clean-de70 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.status-5e81 { 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; }
.secondary_d8a6, .picture_first_7893 { max-width:100%; height:auto; }

.west_cc97, .slider-action-d4c6, .list-white-b270 { white-space:normal; }

.inner-5656,
.detail-south-c5b7,
.yellow_d331,
.alert-178d,
.background_e6cc,
.fixed_1b6c {
  flex-wrap:wrap;
}

[class*="grid"],
.bright_9305,
.button-2e0b,
.tertiary-silver-de10 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.border_e798 img,
.detail-south-c5b7 img,
.media_easy_9eef img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.hot_fc17, .item-cd72,
.bronze_c471, .column-active-dbd2 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.static_ccb7 { width:100%; overflow-x:auto; }
.static_ccb7 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.pressed_551d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .pressed_551d {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.stone-a05c {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.under_377b,
.title-selected-c95d,
.surface-orange-43b7,
.component_short_670a,
.title-0338,
.bright_9305,
.button-2e0b,
.tertiary-silver-de10,
.overlay-660c,
.wrapper_e0f6,
.pressed_551d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .under_377b,
  .title-selected-c95d,
  .surface-orange-43b7,
  .component_short_670a,
  .title-0338,
  .bright_9305,
  .button-2e0b,
  .tertiary-silver-de10,
  .overlay-660c,
  .wrapper_e0f6,
  .pressed_551d {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.progress_55d1,
.block_first_21e0,
.notification_lite_f672,
.preview_green_fbf1,
.bottom_ff15,
.out-cb37,
.tabs-medium-5602,
.stone-a05c {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.form-advanced-fce9,
.section-89ee,
.cold_7e5c {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.form-advanced-fce9 > *,
.section-89ee > *,
.cold_7e5c > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: c410 */
.ghost-box-r5 {
  padding: 0.3rem;
  font-size: 11px;
  line-height: 1.1;
}
