/* {$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;
}

.summary_tiny_4eec {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.aside-narrow-9715 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .aside-narrow-9715 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .aside-narrow-9715 {
        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 */
.pagination_advanced_4110 {
    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);
}

.main_3aa3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .main_3aa3 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .pink_fad8 {
        grid-column: 1;
    }
    
    .red_35f3 {
        grid-column: 2;
    }
    
    .primary_7559 {
        grid-column: 3;
    }
}

.pink_fad8 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.pink_fad8:hover img {
    transform: scale(1.05);
}

/* Navigation */
.secondary-4521 {
    display: none;
}

@media (min-width: 1024px) {
    .secondary-4521 {
        display: block;
    }
}

/* Grouped Navigation */
.chip-huge-16c7 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.gallery_tall_7d11 {
    position: relative;
}

.main-3632 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.gallery_tall_7d11 .layout_531d {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.layout_531d {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.west_a57c {
    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;
}

.west_a57c:hover,
.west_a57c.fn-active-3992 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.top_0044 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .top_0044 {
        display: flex;
    }
}

/* Mobile Register Button */
.red_35f3 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .red_35f3 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.column-b398 {
    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;
}

.column-b398::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 */
.primary_7559 {
    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) {
    .primary_7559 {
        display: none;
    }
}

.primary_7559 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.primary_7559.fn-active-3992 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.primary_7559.fn-active-3992 span:nth-child(2) {
    opacity: 0;
}

.primary_7559.fn-active-3992 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.logo_3ffa {
    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;
}

.logo_3ffa.fn-active-3992 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.footer_pro_494b {
    overflow: hidden;
}

.detail-6f77 {
    list-style: none;
    padding: 0.75rem 0;
}

.advanced-beaf {
    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;
}

.advanced-beaf:hover,
.advanced-beaf.fn-active-3992 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.advanced-beaf.clean_5361 {
    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;
}

.advanced-beaf.clean_5361::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 */
.dim_fe87 {
    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;
}

.breadcrumb-pink-12ef {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.breadcrumb-pink-12ef:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.outline-hot-6b33 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.outline-hot-6b33:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.preview-upper-5f46 {
    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;
}

.preview-upper-5f46:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.yellow-0315 {
    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;
}

.easy_7572 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.easy_7572:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.basic_f194 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.basic_f194:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.iron-bc28 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.iron-bc28: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);
}

.text-silver-ae42 {
    font-size: 1em;
    font-weight: 700;
}

.cool_5cac {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.banner-lower-1acf {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.banner-lower-1acf::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;
}

.form-huge-de9d {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .form-huge-de9d {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.carousel_1c1e {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.feature_pro_a615 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.backdrop-d41a {
    margin-bottom: 2rem;
}

.huge-8d22 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .huge-8d22 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.container-selected-0df5 {
    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);
}

.dropdown_pink_7e17 {
    font-size: 1.5rem;
}

.list-84ad {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.selected-3d26 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.label-fb24 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.label-fb24:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.header-17ff {
    text-align: center;
    margin-bottom: 3rem;
}

.icon-2c43 {
    margin-bottom: 1rem;
}

.shadow_b684 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.progress-yellow-5280 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .progress-yellow-5280 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .progress-yellow-5280.carousel_stone_7336 {
        direction: rtl;
    }
    
    .progress-yellow-5280.carousel_stone_7336 > * {
        direction: ltr;
    }
}

.paragraph_ee63 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.paragraph_ee63:first-child {
    margin-top: 0;
}

.warm_d384 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.bronze_3632 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.bronze_3632:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.label_9a99 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .label_9a99 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hero-04c0 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.outer-8738 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.layout_739d {
    list-style: none;
}

.layout_739d li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.layout_739d li:last-child {
    border-bottom: none;
}

/* Games Features */
.footer_next_a3de {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.hidden_c76e {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.up_f325 {
    font-size: 2rem;
    flex-shrink: 0;
}

.detail_pink_3acb {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.outline_west_b925 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.pattern_2242 {
    margin: 2rem 0;
}

.first-f042 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.huge-b774 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.sidebar-rough-45c6 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.outline_dc1b {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.menu-f6de {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .menu-f6de {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid-1120 {
    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);
}

.grid-1120:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.wrapper_steel_ee52 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.alert-86b3 {
    font-size: 1.5rem;
}

.outline_down_621a {
    color: var(--accent-color);
    margin: 0;
}

.chip-current-137e {
    list-style: none;
}

.chip-current-137e li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.chip-current-137e li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.link_09ec {
    margin: 2rem 0;
}

.iron-74b7 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.wrapper_7fd5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .wrapper_7fd5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tertiary_outer_0c32 {
    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-medium-9c42 {
    font-size: 1.25rem;
}

.notification_b00c {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.border_north_7730,
.tooltip-dbeb {
    text-align: center;
    margin: 2rem 0;
}

.light-3dcb,
.menu-iron-1edd {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.detail-4e45 {
    margin: 2rem 0;
    text-align: center;
}

.component_abeb {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.component_abeb::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;
}

.last_57e2 {
    position: relative;
    z-index: 1;
}

.bright-faf1 {
    margin-bottom: 1rem;
}

.carousel-tiny-cb95 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.message_over_8a7c {
    margin-bottom: 3rem;
}

.module-thick-dcef {
    margin-top: 3rem;
}

.notice_south_5725 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .notice_south_5725 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.notice_south_5725 .container-selected-0df5 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.media-cf0b {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.lite-4fa6 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.over_dc31 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.preview_stone_2b27 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .preview_stone_2b27 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .preview_stone_2b27 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.secondary_up_a6ff {
    margin-bottom: 1rem;
}

.bright_aea5 img {
    margin-bottom: 1rem;
}

.box-103f {
    color: var(--text-gray);
    line-height: 1.6;
}

.east_b03b {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.header_pro_1a9d {
    list-style: none;
}

.header_pro_1a9d li {
    margin-bottom: 0.5rem;
}

.header_pro_1a9d a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.header_pro_1a9d a:hover {
    color: var(--accent-color);
}

.down-e0fe {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.element-action-ef90 {
    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);
}

.element-action-ef90:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.clean-6800 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.clean-6800 p {
    margin-bottom: 0.25rem;
}

.gradient-72f7 {
    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-72f7 {
        flex-direction: row;
    }
}

.silver_cea4 {
    text-align: center;
}

@media (min-width: 768px) {
    .silver_cea4 {
        text-align: left;
    }
}

.silver_cea4 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.table_outer_b0fe {
    font-size: 0.75rem !important;
}

.clean-5590 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.west_fed6 {
    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);
    }
}

.progress-thick-8da1 {
    animation: fadeInUp 0.6s ease-out;
}

.feature-smooth-55e7 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.badge_glass_b7af {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .badge_glass_b7af {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.popup_10f3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .popup_10f3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.slider-pressed-1d93 {
    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);
}

.slider-pressed-1d93 .up_f325 {
    font-size: 1.25rem;
}

.slider-pressed-1d93 .backdrop-20de {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.middle-f6dd {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .middle-f6dd {
        grid-template-columns: repeat(3, 1fr);
    }
}

.badge-selected-82b4 {
    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);
}

.badge-selected-82b4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.large_0c32 {
    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);
}

.nav_thick_9ecb {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.accordion_443c {
    color: var(--text-gray);
    line-height: 1.6;
}

.icon_f931 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wrapper-thick-6c33 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.wrapper-thick-6c33 .detail_pink_3acb {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.wrapper-thick-6c33 .outline_west_b925 {
    color: var(--text-gray);
    line-height: 1.6;
}

.yellow-9733 {
    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);
}

.hovered_19e9 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.hovered_19e9 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.hovered_19e9 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.slow_adc4 {
    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);
}

.selected_d92b {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.block_d696 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.block_d696 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.block_d696 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);
}

.block_d696 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.block_d696 input::placeholder {
    color: var(--text-muted);
}

.tag_5324 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.small_7801 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.small_7801 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.notice_bronze_28c3 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.notice_bronze_28c3:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.wrapper_7fd5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .wrapper_7fd5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tertiary_outer_0c32 {
    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);
}

.tertiary_outer_0c32 .carousel-medium-9c42 {
    font-size: 1.25rem;
}

.tertiary_outer_0c32 .notification_b00c {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.purple-ce07 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.element-action-6b77 {
    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);
}

.element-action-6b77 .up_f325 {
    font-size: 2rem;
    flex-shrink: 0;
}

.element-action-6b77 .detail_pink_3acb {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.element-action-6b77 .outline_west_b925 {
    color: var(--text-gray);
    line-height: 1.6;
}

.current_1975 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.filter-paper-553f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.filter-paper-553f .hard_c5b8 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.filter-paper-553f .smooth_a699 {
    color: var(--text-gray);
    line-height: 1.6;
}

.narrow_b63f {
    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);
}

.dark-4da5 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .dark-4da5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.next-e2c5 {
    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);
}

.next-e2c5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.shadow_90ed {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.wrapper_short_d02f {
    flex: 1;
}

.basic_228d {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.badge-9edc {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.white_8584 {
    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);
}

.white_8584:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.mask_fc09 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .mask_fc09 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.bottom-92ca {
    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);
}

.bottom-92ca:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.avatar_easy_3b60 {
    font-size: 2rem;
    flex-shrink: 0;
}

.input_fixed_fabb {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.pattern_next_d860 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.text-f517 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.table-7999 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.fluid_e7fe {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.liquid-56dc {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.liquid-56dc .east_c4d2 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.liquid-56dc .icon-left-ec2d {
    color: var(--text-gray);
    line-height: 1.6;
}

.upper-5432 {
    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);
}

.hot-1efd {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.icon-9c9b {
    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);
}

.icon-9c9b .up_f325 {
    font-size: 2rem;
    flex-shrink: 0;
}

.icon-9c9b .detail_pink_3acb {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.icon-9c9b .outline_west_b925 {
    color: var(--text-gray);
    line-height: 1.6;
}

.grid_d690 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .grid_d690 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.button_e7f5 {
    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);
}

.button_e7f5:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.pagination_9690 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pagination_9690 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gold-a1f5 {
    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);
}

.gold-a1f5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.icon-98ca {
    font-size: 2rem;
    flex-shrink: 0;
}

.filter_upper_6900 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.huge-b774 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.hidden_6d5c {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.over_095d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sidebar-5bf4 {
    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);
}

.sidebar-5bf4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tag-first-5499 {
    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);
}

.box_dynamic_f54f {
    flex: 1;
}

.basic-9ef1 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.disabled_9dca {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.primary_d032 {
    color: var(--text-gray);
    line-height: 1.6;
}

.button_6a2e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.shade_0d0f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shade_0d0f .hard_c5b8 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.shade_0d0f .smooth_a699 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tooltip-dbeb {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.heading-c60e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .heading-c60e {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.detail-77a8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .detail-77a8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.menu_55d5 {
    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);
}

.menu_55d5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.wide_90a0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.focused_9e4c {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.form-7e65 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.white_9952 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.surface_orange_774c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tabs_6543 {
    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);
}

.box-20e4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.disabled-large-14cd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.thick-8e79 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hot-1efd {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.icon-9c9b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.icon-9c9b .detail_pink_3acb {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.icon-9c9b .outline_west_b925 {
    color: var(--text-gray);
    line-height: 1.6;
}

.feature-3815 {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.card-bronze-5f33 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .card-bronze-5f33 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .card-bronze-5f33 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.secondary_5f1b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.secondary_5f1b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.static_f2fa {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.modal_hovered_840e {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.right-51f9 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.down_8e12 {
    padding: 1.5rem;
}

.blue_0393 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.video_last_c9b9 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.video_last_c9b9 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.video_last_c9b9 li:last-child {
    border-bottom: none;
}

.video_last_c9b9 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.focus_3af8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .focus_3af8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.item_easy_54e4 {
    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);
}

.item_easy_54e4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.icon_gold_4e46 {
    font-size: 2rem;
    flex-shrink: 0;
}

.caption-bba5 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dynamic-fc61 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.disabled_west_bd9c {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.lower-84fe {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.notification-0df4 {
    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);
}

.element-rough-4729 {
    font-size: 2rem;
    flex-shrink: 0;
}

.disabled_9f28 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.slider-liquid-17e8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tooltip-a8ed {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.breadcrumb_gas_a12a {
    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);
}

.form-5aba {
    text-align: center;
}

.motion_3f1c {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.center_c3eb {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.thumbnail_bbb6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pagination_iron_1ef0 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pagination_iron_1ef0 .detail_pink_3acb {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.pagination_iron_1ef0 .outline_west_b925 {
    color: var(--text-gray);
    line-height: 1.6;
}

.content_static_fe17 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .content_static_fe17 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .content_static_fe17 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.main_8bcc {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.main_8bcc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tertiary_6d29 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.item_full_b8db {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.detail_pink_3acb {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.active_8e78 {
    padding: 1.5rem;
}

.outline_west_b925 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.preview-eff1 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.preview-eff1 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.preview-eff1 li:last-child {
    border-bottom: none;
}

.preview-eff1 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.tertiary-6b92 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.top_fe78 {
    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);
}

.top_fe78:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.focus-e7ef {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dirty-a71c {
    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);
}

.large_0c32 {
    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;
}

.nav_thick_9ecb {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.accordion_443c {
    color: var(--text-gray);
    line-height: 1.6;
}

.stale_4be0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.text-left-d6c2 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.picture_4f67 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.pattern-top-31cf {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.link_steel_e206 {
    display: flex;
    gap: 1rem;
}

.link_steel_e206 .input_8102 {
    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;
}

.steel-69ce {
    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);
}

.table_3d3d {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.active_194f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.active_194f 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;
}

.active_194f li:last-child {
    border-bottom: none;
}

.active_194f li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.notice-prev-1af1 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .notice-prev-1af1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .notice-prev-1af1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.orange-8714 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.orange-8714:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hover_dbec {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.prev_270c {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.east_c4d2 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.highlight-c1a5 {
    font-size: 1rem;
}

.orange_143a {
    padding: 1.5rem;
}

.icon-left-ec2d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.tertiary_35a2 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.tertiary_35a2 .form-5aba {
    text-align: center;
}

.tertiary_35a2 .center_c3eb {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.tertiary_35a2 .module_312d {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.popup_3c14 {
    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);
}

.popup_3c14:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.thick_4962 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .thick_4962 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.picture-1b9e {
    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);
}

.picture-1b9e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.component_f475 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.component-02d2 {
    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);
}

.nav_south_bfce {
    font-size: 2rem;
    flex-shrink: 0;
}

.frame-copper-3c4b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.table-gas-4037 {
    color: var(--text-gray);
    line-height: 1.6;
}

.icon-in-a0d9 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.highlight-large-5ab5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.mini-0405 {
    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);
}

.label_3cc9 {
    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;
}

.label_3cc9.detail_3a14 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.label_3cc9.main_last_b733 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.label_3cc9.box-d2e5 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.label_3cc9.media_glass_12c9 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.label_3cc9.complex_62ea {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.primary_gold_512c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.block_white_a957 {
    color: var(--text-gray);
    line-height: 1.6;
}

.link-58b6 {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dirty-8441 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.current_1975 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.current_1975 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;
}

.current_1975 li:last-child {
    border-bottom: none;
}

.current_1975 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.logo-lower-433e {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .logo-lower-433e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .logo-lower-433e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.simple_f42b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.simple_f42b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.simple_f42b.upper_bfaa {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .simple_f42b.upper_bfaa {
        grid-column: span 3;
    }
}

.chip-1f25 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.simple_f42b.upper_bfaa .chip-1f25 {
    background: rgba(6, 182, 212, 0.1);
}

.advanced-36f5 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.sidebar_b6df {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.simple_f42b.upper_bfaa .sidebar_b6df {
    color: var(--info-color);
}

.badge-yellow-5378 {
    padding: 1.5rem;
    text-align: center;
}

.warm-b19c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.simple_f42b.upper_bfaa .warm-b19c {
    color: var(--info-color);
}

.logo_5012 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.orange_6a5e {
    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 */
.down-bac6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .down-bac6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.copper-3c03 {
    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);
}

.copper-3c03:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.layout_plasma_8a40 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.element-action-6b77 {
    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-medium-9c42 {
    font-size: 2rem;
    flex-shrink: 0;
}

.paragraph_over_4f21 {
    flex: 1;
}

.iron-74b7 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.search-3a3a {
    color: var(--text-gray);
    line-height: 1.6;
}

.background_liquid_9adb {
    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);
}

.medium-0901 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.secondary-small-b7cf {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.west_fed6 {
    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);
}

.south_0cf4 {
  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);
}

.south_0cf4 .form-5aba {
    text-align: center;
}

.south_0cf4 .motion_3f1c {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.south_0cf4 .center_c3eb {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.huge_3428 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.basic-290e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.header_dffe {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.clean-1bfa {
    color: var(--text-gray);
    line-height: 1.6;
}

.stone-290a {
    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);
}

.focus-south-bd18 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.bright_69e9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.detail_red_eaac {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .detail_red_eaac {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .detail_red_eaac {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tag-hard-14d3 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.tag-hard-14d3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tag-advanced-4d45 {
    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);
}

.last_d7e0 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.left_3d65 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.caption_small_449e {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.caption_small_449e.content_up_ac16 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.caption_small_449e.item_3ed8 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.caption_small_449e.tabs_bronze_5614 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.gallery_fixed_d157 {
    padding: 1.5rem;
    text-align: center;
}

.wrapper_full_b9da {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.accordion_2e9f {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.accordion_2e9f .picture_f651 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.notification_hovered_2f8e {
    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);
}

.notification_hovered_2f8e:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.element_hard_9e5e {
  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);
}

.rough-6876 {
    text-align: center;
}

.rough-6876 .motion_3f1c {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.rough-6876 .center_c3eb {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.pagination_1058 { text-align: center; }
.nav_cool_aff0 { text-align: left; }
.header_active_195f { text-align: right; }

.lower-72aa { margin-bottom: 0; }
.outline_7fb3 { margin-bottom: 0.5rem; }
.surface_full_bb0b { margin-bottom: 1rem; }
.old_3215 { margin-bottom: 1.5rem; }
.active-5962 { margin-bottom: 2rem; }

.notice-0445 { margin-top: 0; }
.smooth_c6bd { margin-top: 0.5rem; }
.accordion-upper-f8d6 { margin-top: 1rem; }
.progress_f5f8 { margin-top: 1.5rem; }
.menu_e474 { margin-top: 2rem; }

.fn-hidden-3992 { display: none; }
.fn-visible-3992 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .banner-lower-1acf {
        padding: 6rem 0 3rem;
    }
    
    .form-huge-de9d {
        text-align: center;
    }
    
    .progress-yellow-5280 {
        text-align: center;
    }
    
    .huge-8d22 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .pagination_advanced_4110,
    .logo_3ffa,
    .component_abeb,
    .over_dc31 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .banner-lower-1acf {
        background: none;
    }
}

/* Providers Section */
.section_63e5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dropdown_copper_9a6f {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dropdown_copper_9a6f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .dropdown_copper_9a6f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.shadow-silver-868a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.shadow-silver-868a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.top_4203 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.box-right-8350 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.main_new_400f {
    list-style: none;
    padding: 0;
}

.main_new_400f li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.main_new_400f li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.message-bcee {
    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);
}

.message-bcee p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.surface-top-c2a7 {
    padding: var(--section-padding);
}

.message-huge-2a22 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .message-huge-2a22 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.down_4807 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.down_4807:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.clean_4e51 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.content-02aa {
    display: flex;
    flex-direction: column;
}

.form_dynamic_fb3f {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.full_a9b2 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.panel_58de {
    color: var(--accent-color);
}

.input-dark-6f83 {
    font-size: 1.25rem;
}

.sort-stone-240b {
    margin-bottom: 1rem;
}

.sort-stone-240b p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.middle_bd35 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.bottom-873b {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.form-5aba {
    text-align: center;
}

.motion_3f1c {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.center_c3eb {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.fluid_61c7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.label_simple_39e1 {
    margin: 2rem 0;
}

.column-ca6d {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.column-ca6d .up_f325 {
    font-size: 2rem;
    flex-shrink: 0;
}

.popup-wood-2fc8 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.inner_85da {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: var(--transition-normal);
    flex: 1;
    min-width: 200px;
}

.inner_85da:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.text-slow-4410 {
    font-size: 2rem;
}

.outer-9837 {
    display: flex;
    flex-direction: column;
}

.focused-15d3 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.hidden-7441 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.box-bd70 {
    padding: var(--section-padding);
}

.accordion-dark-2181 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .accordion-dark-2181 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .accordion-dark-2181 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.secondary_complex_d696 {
    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);
}

.secondary_complex_d696:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.secondary_complex_d696 .motion_3f1c {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.secondary_complex_d696 .center_c3eb {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.secondary_complex_d696 .widget-372d {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.wrapper-purple-e304 {
    margin-top: 4rem;
}

.over_d051 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.light_afe6 {
    overflow-x: auto;
}

.grid-liquid-1429 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.grid-liquid-1429 thead {
    background: var(--accent-color);
}

.grid-liquid-1429 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.grid-liquid-1429 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.grid-liquid-1429 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.grid-liquid-1429 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.hidden_a839 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.thumbnail-0457 {
    max-width: 900px;
    margin: 0 auto;
}

.action-9912 {
    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);
}

.action-9912:hover {
    border-color: var(--accent-color);
}

.gallery_1cee {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.gallery_1cee h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.wrapper-066e {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.action-9912.fn-active-3992 .wrapper-066e {
    transform: rotate(45deg);
}

.popup-yellow-bbd3 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.action-9912.fn-active-3992 .popup-yellow-bbd3 {
    max-height: 1000px;
}

.popup-yellow-bbd3 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.focus_cool_6a28 {
    padding: var(--section-padding);
}

.hovered_19e9 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.primary-cfd8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.soft_fcec {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .soft_fcec {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mini-0703 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.banner_5065 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.slider_73aa {
    font-size: 2rem;
}

.panel-brown-ea3d {
    color: var(--text-white);
    margin: 0;
}

.detail-a1dd {
    list-style: none;
    padding: 0;
}

.detail-a1dd li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-a1dd li:last-child {
    border-bottom: none;
}

.wide_144c {
    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);
}

.wide_144c p {
    color: var(--success-color);
    margin: 0;
}

.shadow-e402 {
    margin-top: 3rem;
}

.table_3d3d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.description_upper_77f3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .description_upper_77f3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.button-dd28 {
    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);
}

.filter-short-3bc2 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.button-dd28 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.logo-3132 {
    padding: var(--section-padding);
}

.tabs_5174 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tabs_5174 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.selected_c6af {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.selected_c6af:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.plasma_620b {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.border-e2ec {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.mask_9ab3 {
    flex: 1;
}

.bronze-85f9 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.caption-b131 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.feature-c5f2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.container-focused-1ec6 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.container-focused-1ec6:last-child {
    border-bottom: none;
}

/* Comparison Section */
.notification-d893 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.overlay_short_4cc3 {
    padding: var(--section-padding);
}

.layout_green_4e9f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.green-37bc {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .green-37bc {
        grid-template-columns: repeat(3, 1fr);
    }
}

.static-9250 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.carousel_inner_5c7e, .south-cb6c, .footer_thick_57cb {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.footer_thick_57cb {
    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 */
.element-solid-ebc6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.description-thick-96a8 {
    margin: 2rem 0;
}

.container_fresh_3844 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.nav-light-aa4c {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.status_middle_2b85 {
    list-style: none;
    padding: 0;
}

.status_middle_2b85 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;
}

.status_middle_2b85 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.status_middle_2b85 li:last-child {
    border-bottom: none;
}

.rough_f93d {
    text-align: center;
    margin-top: 2rem;
}

.disabled-3873 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.outline-fc37 {
    padding: var(--section-padding);
}

.media-dark-101a {
    margin: 2rem 0;
}

.table_solid_8dc6 {
    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) {
    .table_solid_8dc6 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.table_solid_8dc6:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.article-9407 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.title-green-542a {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.breadcrumb_a929 {
    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;
}

.preview_hovered_d34b {
    flex: 1;
}

.table_bd44 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.secondary_ff35 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.soft_d374 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.carousel-0fe7 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .carousel-0fe7 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.sort_smooth_dd8b {
    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);
}

.sort_smooth_dd8b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.sort_smooth_dd8b .motion_3f1c {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.sort_smooth_dd8b .center_c3eb {
    color: var(--text-gray);
    font-size: 1rem;
}

.image-silver-10a1 {
    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);
}

.summary-inner-2b24 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.summary-inner-2b24 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.component-ae22 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .component-ae22 {
        grid-template-columns: 1fr 1fr;
    }
}

.tiny-76e1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.background-dark-e656 {
    margin-bottom: 1.5rem;
}

.background-dark-e656 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.background-dark-e656 input,
.background-dark-e656 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;
}

.background-dark-e656 input:focus,
.background-dark-e656 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.shade_867e {
    width: 100%;
    margin-top: 1rem;
}

.pagination_hard_ad15 {
    display: flex;
    align-items: center;
}

.small_c156 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.large-d53e {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.brown-5430 {
    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;
}

.disabled-3d44 {
    color: var(--text-gray);
}

.content-257d {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.badge_b912 {
    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);
}

.badge_b912 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.under_a707 {
    margin-top: 3rem;
}

.layout_paper_11b5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.border-right-ed55 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.detail-422a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.nav-static-68e7 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-static-68e7:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.lite_b2d7 {
    padding: var(--section-padding);
}

.progress-selected-0265 {
    margin: 2rem 0;
}

.small_7425 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.tertiary-0647 {
    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;
}

.tertiary-0647:hover, .tertiary-0647.fn-active-3992 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.gallery_052d {
    display: none;
}

.gallery_052d.fn-active-3992 {
    display: block;
}

.up_fdf9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.alert_tall_fbc3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.gold-f4c6 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.gold-f4c6 ul {
    list-style: none;
    padding: 0;
}

.gold-f4c6 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.gold-f4c6 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.pagination-d1f9 {
    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 */
.hidden-20b6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.banner-471c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.blue_23be {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.gallery_inner_e195 {
    color: var(--accent-color);
    margin: 0;
}

.border_0992 {
    display: flex;
    gap: 1.5rem;
}

.container_4773 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.up_8c00 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.banner-0cd4 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.banner-0cd4.accordion_64f1 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.banner-0cd4.feature-green-42b7 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.banner-0cd4.progress_focused_81b7 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.block-3a9e {
    margin-top: 2rem;
}

.mask-711a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.column_0c00 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .column_0c00 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.light_a370 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.heading_e9b0 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.east_0927 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.panel-north-efc3 {
    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 */
.notification-ecf3 {
    padding: var(--section-padding);
}

.sidebar_small_93f3 {
    margin: 2rem 0;
}

.detail_d5fa {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.under_6467 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.large_6947 {
    list-style: none;
    padding: 0;
}

.large_6947 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;
}

.large_6947 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.large_6947 li:last-child {
    border-bottom: none;
}

.lite_fc0e {
    margin: 2rem 0;
}

.bottom_9491 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.surface-db8d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .surface-db8d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.link-basic-ab3c {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.inner_e4fb {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stone_d2ed {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.primary_down_1eb1 {
    margin-top: 2rem;
}

.basic_228d {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.huge-6586 {
    list-style: none;
    padding: 0;
}

.title-a7d8 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.title-a7d8 a {
    color: var(--accent-color);
    text-decoration: none;
}

.title-a7d8 a:hover {
    text-decoration: underline;
}

.badge_278a {
    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 */
.aside_b3a5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.message_bb2e {
    margin: 2rem 0;
}

.dropdown_fccd {
    margin-bottom: 3rem;
}

.dropdown_fccd .nav-light-aa4c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.sort_cf72 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.text_fixed_e6ca {
    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);
}

.text_fixed_e6ca:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.picture_prev_2132 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .picture_prev_2132 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accordion-thick-f06f {
    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 */
.box_2dde {
    padding: var(--section-padding);
}

.right_94d0 {
    margin: 2rem 0;
}

.bottom-c957 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.gold_e125 {
    overflow-x: auto;
    margin: 2rem 0;
}

.menu_under_1f0c {
    background: rgba(6, 182, 212, 0.1) !important;
}

.pressed-f404 {
    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;
}

.filter_hard_6b24 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.notification-glass-90fa {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .notification-glass-90fa {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fast_af7d {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.fast_af7d .up_f325 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.fast_af7d .detail_pink_3acb {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.avatar-25f6 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.basic_2c73 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dirty_437c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dirty_437c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.large_07aa {
    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;
}

.large_07aa:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.primary_8682 {
    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);
}

.easy_e6e2 {
    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;
}

.smooth_ac74 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.thumbnail-c1ef {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.slow-986b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.block_a389 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.header-last-182a {
    color: var(--text-white);
    font-weight: 600;
}

.glass-8aac {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.old-e060 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.old-e060 .input_8102 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.top-c61f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .top-c61f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.paragraph_hard_d6ac {
    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);
}

.paragraph_hard_d6ac:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.paragraph_hard_d6ac .motion_3f1c {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.paragraph_hard_d6ac .center_c3eb {
    color: var(--text-gray);
    font-size: 1rem;
}

.mini-003c {
    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);
}

.list_fresh_ad89 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.list_fresh_ad89 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.surface_orange_774c {
    margin: 2rem 0;
}

.tabs_6543 {
    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);
}

.tabs_6543:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.box-20e4 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.shadow_e5dd {
    flex: 1;
}

.disabled-large-14cd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.thick-8e79 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.hot-1efd {
    margin: 2rem 0;
}

.icon-9c9b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.icon-9c9b .detail_pink_3acb {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.icon-9c9b .outline_west_b925 {
    color: var(--text-gray);
    margin: 0;
}

.feature-3815 {
    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);
}

.feature-3815 .light-3dcb {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.avatar-25f6 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.tag-first-5499 {
    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;
}

.box_dynamic_f54f {
    flex: 1;
}

.disabled_9dca {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.primary_d032 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.large_0c32 {
    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;
}

.main_gas_2e8d {
    flex: 1;
}

.nav_thick_9ecb {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.accordion_443c {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.picture_4f67 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.pattern-top-31cf {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.link_steel_e206 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.link_steel_e206 .input_8102 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.steel-69ce {
    margin-top: 2rem;
}

.steel-69ce .table_3d3d {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.dropdown_fb01 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.breadcrumb_gas_a12a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .breadcrumb_gas_a12a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.breadcrumb_gas_a12a .form-5aba {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.thumbnail_bbb6 {
    margin: 2rem 0;
}

.pagination_iron_1ef0 {
    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 */
.gas-005b {
    padding: var(--section-padding);
}

.active_8e78 {
    margin-top: 1rem;
}

.preview-eff1 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.preview-eff1 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.preview-eff1 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.soft-5242 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.green-97ad {
    margin: 2rem 0;
}

.dynamic-633a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.clean-ecb1 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.dirty_cfb2 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.main_c777 {
    margin: 2rem 0;
}

.search_upper_acd5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.search_upper_acd5 .nav-light-aa4c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.copper_a818 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .copper_a818 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.badge_dcd0 {
    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);
}

.lite_24e0 {
    color: var(--text-white);
    font-weight: 600;
}

.soft-6b21 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.paragraph-large-bb22 {
    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);
}

.paragraph-large-bb22 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.outer_8ea0 {
    padding: var(--section-padding);
}

.surface-ef93 {
    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;
}

.surface-ef93:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.highlight-down-7699 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-down-7699 .filter-short-3bc2 {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-down-7699 .grid-b957 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.background-2037 {
    flex: 1;
}

.avatar_hovered_fb42 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.menu-pro-5407 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-pro-5407 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.menu-pro-5407 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.column_center_9f35 {
    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);
}

.column_center_9f35 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.column_center_9f35 strong {
    color: var(--warning-color);
}

/* Slots Section */
.simple_ffe0 {
    padding: var(--section-padding);
}

.table-7999 {
    margin: 2rem 0;
}

/* Table Games Section */
.row_b4b0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.fluid_e7fe {
    margin: 2rem 0;
}

.liquid-56dc {
    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);
}

.liquid-56dc:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.liquid-56dc .east_c4d2 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.liquid-56dc .icon-left-ec2d {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.upper-5432 {
    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);
}

.upper-5432 .light-3dcb {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.wide_90f3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.backdrop_6de6 {
    margin: 2rem 0;
}

.down_dc6a {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.paragraph_under_333a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.yellow_9b57 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.outline-next-9bd5 {
    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);
}

.outline-next-9bd5:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.outline-next-9bd5.fn-active-3992 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pro-1e15 {
    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);
}

.tertiary_yellow_4e68 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.tertiary_yellow_4e68 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.copper_df0d {
    padding: var(--section-padding);
}

.hover-paper-8599 {
    margin: 2rem 0;
}

.primary_fa92 {
    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);
}

.primary_fa92:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .primary_fa92 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.photo_gas_8991 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.under_5041 {
    flex: 1;
}

.frame-f292 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.widget_tall_38f1 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.highlight-a264 {
    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;
}

.pro_ba53 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.mask-76a6 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.mini-8020 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.hovered_766d {
    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;
}

.hovered_766d:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.south_4260 {
    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);
}

.backdrop_lite_9cef {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.backdrop_lite_9cef strong {
    color: var(--accent-color);
}

/* New Games Section */
.main-stale-0186 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.item_full_e3f7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .item_full_e3f7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .item_full_e3f7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pattern_f1b4 {
    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;
}

.pattern_f1b4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.solid-3e99 {
    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;
}

.highlight-paper-abe3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.hovered_08b1 {
    font-size: 2rem;
}

.up_fb52 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.copper_ad9b {
    flex: 1;
}

.footer_silver_985e {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.narrow-386d {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tertiary-center-26f3 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.widget-a3f6 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.yellow_0e07 {
    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;
}

.basic_a505 {
    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;
}

.basic_a505:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.mini-1cb7 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.large-7afa {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.steel_5a4d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .steel_5a4d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.center-5f8e {
    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);
}

.widget_9bf8 {
    color: var(--text-white);
    font-weight: 600;
}

.item_silver_028a {
    color: var(--accent-color);
    font-weight: 600;
}

.sidebar_easy_6a14 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.sidebar_easy_6a14 strong {
    color: var(--accent-color);
}

/* Security Section */
.rough_0b51 {
    padding: var(--section-padding);
}

/* Benefits Section */
.feature_out_149b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.block_south_759b {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.tertiary_de9f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.fixed-4591 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.video-d840 {
    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) {
    .video-d840 {
        flex-direction: column;
        gap: 1rem;
    }
}

.video-d840:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.video-d840 .large_0c32 {
    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;
}

.video-d840 .main_gas_2e8d {
    flex: 1;
}

.video-d840 .nav_thick_9ecb {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.video-d840 .accordion_443c {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.outer_c155 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outer_c155 .iron-74b7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.outer_c155 .purple-ce07 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.outer_c155 .purple-ce07 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.outer_c155 .purple-ce07 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.purple_6b1b {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.old_3cdd {
    padding: var(--section-padding);
}

.block-162b {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .block-162b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.secondary_f7a0 {
    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);
}

.secondary_f7a0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.secondary_f7a0 .layout-eb6b {
    font-size: 2rem;
    flex-shrink: 0;
}

.secondary_f7a0 .last-fbe7 {
    flex: 1;
}

.secondary_f7a0 .hard_c5b8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.secondary_f7a0 .focus-ea35 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.icon-c76d {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.icon-c76d .gradient-first-9aa6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.icon-c76d .component-3742 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.icon-c76d .component-3742 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);
}

.icon-c76d .component-3742 li:last-child {
    border-bottom: none;
}

.icon-c76d .component-3742 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;
}

.icon-c76d .component-3742 li strong {
    color: var(--text-white);
}

.right-dbc9 {
    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);
}

.right-dbc9 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.right-dbc9 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.video-liquid-9055 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.label-c74f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .label-c74f {
        grid-template-columns: repeat(2, 1fr);
    }
}

.texture_stale_7443 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.texture_stale_7443:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.input-a785 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.article_purple_662f {
    font-size: 2rem;
}

.media-e618 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.accent-132f {
    flex: 1;
}

.overlay-large-c011 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.overlay-large-c011 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.overlay-large-c011 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.small_a4e8 {
    margin-top: 3rem;
}

.detail_d5fa {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.under_6467 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.large_6947 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.large_6947 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.large_6947 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.large_6947 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.avatar-b99a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.iron-47ce {
    margin: 2rem 0;
}

.article-fb93 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.article-fb93 .nav-light-aa4c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.section-eb4d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .section-eb4d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.middle_da27 {
    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);
}

.middle_da27:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.breadcrumb_266b {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.first-a9c3 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.title-dim-d6bd {
    padding: var(--section-padding);
}

.left_9487 {
    margin: 2rem 0;
}

.form_middle_1024 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .form_middle_1024 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .form_middle_1024 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hero_small_28b3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.hero_small_28b3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.content_2f98 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.preview-272e {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.status-509f {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-509f.hard_478e {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.media_dark_2c73 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.tabs_8bbb {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.highlight-fresh-9065 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.in-2e29 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.huge-967e {
    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);
}

.huge-967e p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.huge-967e strong {
    color: var(--accent-color);
}

/* Update Log Section */
.block_b055 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tertiary-9058 {
    margin: 2rem 0;
}

.header-paper-7aa3 {
    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) {
    .header-paper-7aa3 {
        flex-direction: column;
        gap: 1rem;
    }
}

.header-paper-7aa3:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.header-paper-7aa3::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);
}

.panel_980b {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.thumbnail-1f2a {
    flex: 1;
}

.pattern-west-9f42 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.west_1b2c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.west_1b2c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.north-c794 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.simple-7137 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.dynamic-7e7d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .dynamic-7e7d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hidden_plasma_186c {
    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);
}

.form_e4dd {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.dark-78f6 {
    flex: 1;
}

.article_a9a3 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.caption_e611 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.thumbnail-full-b76b {
    margin-top: 2rem;
    text-align: center;
}

.item-out-9acf {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.item-out-9acf strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.thick_4962 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .thick_4962 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.picture-1b9e {
    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);
}

.picture-1b9e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.picture-1b9e .icon_gold_4e46 {
    font-size: 2rem;
    flex-shrink: 0;
}

.picture-1b9e .caption-bba5 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.picture-1b9e .dynamic-fc61 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.picture-1b9e .disabled_west_bd9c {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.hero_8011 {
    padding: var(--section-padding);
}

.component-02d2 .pressed-cbe6 {
    flex: 1;
}

/* Promo Calendar Section */
.message_brown_51f8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.heading_439c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .heading_439c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.panel_light_a7f2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.soft-7fb5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.modal-fluid-e740 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.thumbnail_easy_ca86 {
    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);
}

.outer-5b43 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.shadow_motion_2dd8 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.paragraph_84a5 {
    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);
}

.paragraph_84a5 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.paragraph_84a5 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.bottom-c422 {
    padding: var(--section-padding);
}

.complex_aaa6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .complex_aaa6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.solid-2db2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.purple_7122 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.inner-8620 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inner-8620 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.container_4537 {
    margin-top: 3rem;
}

.container_4537 .detail_d5fa {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.container_4537 .under_6467 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.container_4537 .large_6947 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.container_4537 .large_6947 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.container_4537 .large_6947 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.container_4537 .large_6947 li strong {
    color: var(--warning-color);
}

.footer-148d {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.footer-148d strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.caption_short_25a0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.large-89da {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .large-89da {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid-e3c5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.grid-e3c5 .nav-light-aa4c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.outline-0415 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.motion_b9e6 {
    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);
}

.motion_b9e6:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.stale-57f2 {
    font-size: 2rem;
    flex-shrink: 0;
}

.accent_92a3 {
    flex: 1;
}

.badge_f833 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.texture-d1a0 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.left_4380 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.shadow_3d5c {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.element_ae6c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .element_ae6c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tiny-9754 {
    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);
}

.tiny-9754:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.hover_glass_acc2 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.background_9317 {
    color: var(--text-gray);
    font-size: 1rem;
}

.summary-inner-2b24 {
    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);
}

.shadow-north-fe2a {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.shadow-north-fe2a strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.aside-narrow-9715 { 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; }
.label-fb24, .bronze_3632 { max-width:100%; height:auto; }

.dim_fe87, .preview-upper-5f46, .yellow-0315 { white-space:normal; }

.form-huge-de9d,
.progress-yellow-5280,
.down-bac6,
.thick_4962,
.hot-1efd,
.detail_red_eaac {
  flex-wrap:wrap;
}

[class*="grid"],
.element_ae6c,
.form_middle_1024,
.notice_south_5725 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.banner-lower-1acf img,
.progress-yellow-5280 img,
.selected-3d26 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.carousel_1c1e, .feature_pro_a615,
.icon-2c43, .shadow_b684 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.light_afe6 { width:100%; overflow-x:auto; }
.light_afe6 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.dropdown_copper_9a6f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .dropdown_copper_9a6f {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.shadow-silver-868a {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.accordion-dark-2181,
.tag-inner-a3a7,
.section-4c45,
.hidden_green_498d,
.carousel-0fe7,
.element_ae6c,
.form_middle_1024,
.notice_south_5725,
.element_hard_9e5e,
.hover-paper-8599,
.dropdown_copper_9a6f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .accordion-dark-2181,
  .tag-inner-a3a7,
  .section-4c45,
  .hidden_green_498d,
  .carousel-0fe7,
  .element_ae6c,
  .form_middle_1024,
  .notice_south_5725,
  .element_hard_9e5e,
  .hover-paper-8599,
  .dropdown_copper_9a6f {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.secondary_complex_d696,
.sort_smooth_dd8b,
.tiny-9754,
.container-selected-0df5,
.hero_small_28b3,
.rough-6876,
.primary_fa92,
.shadow-silver-868a {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.breadcrumb-77c6,
.out-a395,
.border_yellow_a5f4 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.breadcrumb-77c6 > *,
.out-a395 > *,
.border_yellow_a5f4 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 07c5 */
.widget-item-z9 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.1;
}
