/* {$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;
}

.wrapper_stale_ea16 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.tabs_77b1 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .tabs_77b1 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .tabs_77b1 {
        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 */
.silver-a57b {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(30, 27, 75, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.border-tiny-1e67 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .border-tiny-1e67 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .primary-843e {
        grid-column: 1;
    }
    
    .iron-a29f {
        grid-column: 2;
    }
    
    .cold-b3ab {
        grid-column: 3;
    }
}

.primary-843e img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.primary-843e:hover img {
    transform: scale(1.05);
}

/* Navigation */
.feature_d90f {
    display: none;
}

@media (min-width: 1024px) {
    .feature_d90f {
        display: block;
    }
}

/* Grouped Navigation */
.paper-4c39 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer_gold_0c66 {
    position: relative;
}

.breadcrumb_cf3c {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.footer_gold_0c66 .full-e217 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.full-e217 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.grid-44e1 {
    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;
}

.grid-44e1:hover,
.grid-44e1.fn-active-b4e4 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.tertiary_out_5465 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .tertiary_out_5465 {
        display: flex;
    }
}

/* Mobile Register Button */
.iron-a29f {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .iron-a29f {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.background_294f {
    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;
}

.background_294f::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 */
.cold-b3ab {
    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) {
    .cold-b3ab {
        display: none;
    }
}

.cold-b3ab span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.cold-b3ab.fn-active-b4e4 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.cold-b3ab.fn-active-b4e4 span:nth-child(2) {
    opacity: 0;
}

.cold-b3ab.fn-active-b4e4 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.label_ae6b {
    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;
}

.label_ae6b.fn-active-b4e4 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.accordion-brown-52ef {
    overflow: hidden;
}

.thick-8664 {
    list-style: none;
    padding: 0.75rem 0;
}

.shade-a7ec {
    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;
}

.shade-a7ec:hover,
.shade-a7ec.fn-active-b4e4 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.shade-a7ec.medium_5232 {
    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;
}

.shade-a7ec.medium_5232::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 */
.full_088e {
    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;
}

.hero-2dba {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.hero-2dba:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.right_59fc {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.right_59fc:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.cool-773b {
    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;
}

.cool-773b:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.box_0575 {
    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;
}

.main-east-0023 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.main-east-0023:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.prev_a968 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.prev_a968:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.thumbnail_selected_3a23 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.thumbnail_selected_3a23: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);
}

.short-c9ba {
    font-size: 1em;
    font-weight: 700;
}

.overlay-0aba {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.tabs_light_5503 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.tabs_light_5503::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;
}

.detail-de97 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .detail-de97 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.block-silver-fbdb {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.gradient-west-33e8 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.wrapper-6e6c {
    margin-bottom: 2rem;
}

.hover-b331 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .hover-b331 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stale-b092 {
    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);
}

.nav_under_23e6 {
    font-size: 1.5rem;
}

.info-6544 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.focus_46e2 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.border-2c69 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.border-2c69:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.search_static_be32 {
    text-align: center;
    margin-bottom: 3rem;
}

.primary_237b {
    margin-bottom: 1rem;
}

.status_red_23d6 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.block-3623 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .block-3623 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .block-3623.pressed-9327 {
        direction: rtl;
    }
    
    .block-3623.pressed-9327 > * {
        direction: ltr;
    }
}

.message-79c5 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.message-79c5:first-child {
    margin-top: 0;
}

.purple-29c2 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.purple-563e {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.purple-563e:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.north_1eb4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .north_1eb4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.icon-e262 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.wrapper-76b9 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.cool_d7e0 {
    list-style: none;
}

.cool_d7e0 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cool_d7e0 li:last-child {
    border-bottom: none;
}

/* Games Features */
.nav-c724 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.nav_tiny_5812 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.table-lite-f9ea {
    font-size: 2rem;
    flex-shrink: 0;
}

.notice_f961 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tag_6d35 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.pink_7db4 {
    margin: 2rem 0;
}

.dynamic-27d6 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.link-db56 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.border_white_4b94 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.mask-0239 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.modal_light_6f95 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .modal_light_6f95 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.status-5f26 {
    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);
}

.status-5f26:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.red-2a53 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.background-1101 {
    font-size: 1.5rem;
}

.right_8e49 {
    color: var(--accent-color);
    margin: 0;
}

.south_6d3a {
    list-style: none;
}

.south_6d3a li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.south_6d3a li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.widget-73d5 {
    margin: 2rem 0;
}

.primary_8c87 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.slider-37a6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .slider-37a6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.secondary-motion-080d {
    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);
}

.sort_south_6dd7 {
    font-size: 1.25rem;
}

.highlight-e5c6 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.nav_5f22,
.shadow-f31c {
    text-align: center;
    margin: 2rem 0;
}

.hero-fluid-a662,
.message-eada {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.black-9750 {
    margin: 2rem 0;
    text-align: center;
}

.button-33b2 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.button-33b2::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;
}

.input-full-23e9 {
    position: relative;
    z-index: 1;
}

.video_2abe {
    margin-bottom: 1rem;
}

.bottom_0bed {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.info_89c0 {
    margin-bottom: 3rem;
}

.lite-6949 {
    margin-top: 3rem;
}

.carousel_narrow_b4fe {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .carousel_narrow_b4fe {
        grid-template-columns: repeat(4, 1fr);
    }
}

.carousel_narrow_b4fe .stale-b092 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.sidebar-slow-2147 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.notice_liquid_b3b0 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.thumbnail-north-4ff9 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.component-76ce {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .component-76ce {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .component-76ce {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.gallery_new_0d74 {
    margin-bottom: 1rem;
}

.tooltip_d4bf img {
    margin-bottom: 1rem;
}

.row_small_0f6c {
    color: var(--text-gray);
    line-height: 1.6;
}

.card-advanced-2287 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.border-new-bee4 {
    list-style: none;
}

.border-new-bee4 li {
    margin-bottom: 0.5rem;
}

.border-new-bee4 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.border-new-bee4 a:hover {
    color: var(--accent-color);
}

.gold_f470 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.lower_cff3 {
    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);
}

.lower_cff3:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.text_iron_7e18 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.text_iron_7e18 p {
    margin-bottom: 0.25rem;
}

.image-middle-38b3 {
    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) {
    .image-middle-38b3 {
        flex-direction: row;
    }
}

.border_1fef {
    text-align: center;
}

@media (min-width: 768px) {
    .border_1fef {
        text-align: left;
    }
}

.border_1fef p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.dynamic_c8e4 {
    font-size: 0.75rem !important;
}

.video-mini-6283 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.widget_stale_7fb0 {
    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);
    }
}

.under-fbab {
    animation: fadeInUp 0.6s ease-out;
}

.nav-f28d {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.shade_out_4569 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shade_out_4569 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.element-soft-7ce3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .element-soft-7ce3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.column-45c2 {
    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);
}

.column-45c2 .table-lite-f9ea {
    font-size: 1.25rem;
}

.column-45c2 .hard-f705 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.solid-1708 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .solid-1708 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.breadcrumb_dark_9ef3 {
    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);
}

.breadcrumb_dark_9ef3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.box_bc86 {
    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);
}

.pro_4c36 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.surface-4481 {
    color: var(--text-gray);
    line-height: 1.6;
}

.background_fbb5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.panel-00b8 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.panel-00b8 .notice_f961 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.panel-00b8 .tag_6d35 {
    color: var(--text-gray);
    line-height: 1.6;
}

.detail-white-bdf9 {
    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);
}

.column_paper_316a {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.column_paper_316a img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.column_paper_316a img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.hero-8267 {
    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);
}

.breadcrumb_solid_9098 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.card-prev-c002 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.card-prev-c002 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.card-prev-c002 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);
}

.card-prev-c002 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.card-prev-c002 input::placeholder {
    color: var(--text-muted);
}

.form-3b50 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.new_aefe {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.new_aefe input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.mask-east-ec73 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.mask-east-ec73:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.slider-37a6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .slider-37a6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.secondary-motion-080d {
    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);
}

.secondary-motion-080d .sort_south_6dd7 {
    font-size: 1.25rem;
}

.secondary-motion-080d .highlight-e5c6 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.solid_3aec {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.south_3d5e {
    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);
}

.south_3d5e .table-lite-f9ea {
    font-size: 2rem;
    flex-shrink: 0;
}

.south_3d5e .notice_f961 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.south_3d5e .tag_6d35 {
    color: var(--text-gray);
    line-height: 1.6;
}

.small-5fd6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hovered_2284 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.hovered_2284 .logo_1789 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hovered_2284 .huge-0f24 {
    color: var(--text-gray);
    line-height: 1.6;
}

.focus_ee4f {
    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);
}

.static_3209 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .static_3209 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.carousel-acbc {
    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);
}

.carousel-acbc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.feature-dirty-75c2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.video_bd7d {
    flex: 1;
}

.link-dd78 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.link_505e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.lite_7790 {
    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);
}

.lite_7790:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.dropdown_out_b0bd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dropdown_out_b0bd {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hover-7a41 {
    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);
}

.hover-7a41:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.slider_b13b {
    font-size: 2rem;
    flex-shrink: 0;
}

.sidebar-inner-97d6 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.medium-25f6 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.warm_341a {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.dark_3820 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.small-cc61 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.shadow_ba7f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.shadow_ba7f .article_stone_727f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.shadow_ba7f .summary_pressed_40bf {
    color: var(--text-gray);
    line-height: 1.6;
}

.gallery_fixed_91fb {
    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);
}

.module_smooth_e08c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.focus_6469 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.focus_6469 .table-lite-f9ea {
    font-size: 2rem;
    flex-shrink: 0;
}

.focus_6469 .notice_f961 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.focus_6469 .tag_6d35 {
    color: var(--text-gray);
    line-height: 1.6;
}

.east_f37e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .east_f37e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.backdrop-dirty-8d3b {
    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);
}

.backdrop-dirty-8d3b:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.accent-01dd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accent-01dd {
        grid-template-columns: repeat(4, 1fr);
    }
}

.heading_ad0e {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.heading_ad0e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.article_top_6a7f {
    font-size: 2rem;
    flex-shrink: 0;
}

.pagination_north_f6b8 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.link-db56 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.yellow_0478 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.aside-paper-590a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.menu_stale_405c {
    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);
}

.menu_stale_405c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gradient-41ee {
    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);
}

.filter_00cf {
    flex: 1;
}

.link_6c9a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.cool-ef82 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.north_9223 {
    color: var(--text-gray);
    line-height: 1.6;
}

.logo-9106 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tooltip-baf6 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tooltip-baf6 .logo_1789 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tooltip-baf6 .huge-0f24 {
    color: var(--text-gray);
    line-height: 1.6;
}

.shadow-f31c {
    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);
}

.blue-f74d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .blue-f74d {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.nav_6ac1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .nav_6ac1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tertiary-liquid-5cb9 {
    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);
}

.tertiary-liquid-5cb9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.info_brown_2682 {
    font-size: 2rem;
    flex-shrink: 0;
}

.gradient-6186 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.paper_6e56 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.pattern-under-a3ad {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.block-narrow-2e00 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.prev_4d94 {
    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);
}

.main_f762 {
    font-size: 2rem;
    flex-shrink: 0;
}

.text_steel_51a2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.texture_59cf {
    color: var(--text-gray);
    line-height: 1.6;
}

.module_smooth_e08c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.focus_6469 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.focus_6469 .notice_f961 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.focus_6469 .tag_6d35 {
    color: var(--text-gray);
    line-height: 1.6;
}

.large_e92e {
    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);
}

.element-b7c8 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .element-b7c8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .element-b7c8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.progress_4bc1 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.progress_4bc1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.wood-0a4c {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.form-north-763a {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.video-659e {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.card_d6c5 {
    padding: 1.5rem;
}

.gradient_0ed0 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.module-6983 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.module-6983 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;
}

.module-6983 li:last-child {
    border-bottom: none;
}

.module-6983 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.glass_baeb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .glass_baeb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.item-5f14 {
    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-5f14:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.card_blue_376d {
    font-size: 2rem;
    flex-shrink: 0;
}

.icon-04e7 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.form_short_0949 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.complex_1d33 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.static_e49b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.yellow-1f2f {
    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);
}

.block_medium_2d35 {
    font-size: 2rem;
    flex-shrink: 0;
}

.cool-1c8e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.label-warm-a0c9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.message-under-ef7b {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.header-4235 {
    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);
}

.banner_iron_cde9 {
    text-align: center;
}

.footer-upper-f3fe {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.center_3834 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.mask-e66f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.grid_2b9d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.grid_2b9d .notice_f961 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.grid_2b9d .tag_6d35 {
    color: var(--text-gray);
    line-height: 1.6;
}

.element_bb2e {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .element_bb2e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .element_bb2e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hard_25c6 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.hard_25c6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.solid-25c9 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.module-c8ca {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.notice_f961 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.steel-b6ab {
    padding: 1.5rem;
}

.tag_6d35 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.red-5b89 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.red-5b89 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;
}

.red-5b89 li:last-child {
    border-bottom: none;
}

.red-5b89 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.message-b4de {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.item-iron-bb11 {
    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-iron-bb11:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.sort-brown-cd35 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.form-soft-efe9 {
    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);
}

.box_bc86 {
    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;
}

.pro_4c36 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.surface-4481 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hero_8cec {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.photo_wood_564b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.left-e1b3 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.bright-6d08 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.top_a6b6 {
    display: flex;
    gap: 1rem;
}

.top_a6b6 .accordion-complex-fdbd {
    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;
}

.mask_easy_6995 {
    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);
}

.description-cold-ad61 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.badge_fluid_7f8e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.badge_fluid_7f8e 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;
}

.badge_fluid_7f8e li:last-child {
    border-bottom: none;
}

.badge_fluid_7f8e li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.caption_dark_7398 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .caption_dark_7398 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .caption_dark_7398 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.grid-c3c6 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.grid-c3c6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.short_f3fe {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.backdrop-gold-aa36 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.article_stone_727f {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.under-2800 {
    font-size: 1rem;
}

.yellow-21c3 {
    padding: 1.5rem;
}

.summary_pressed_40bf {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.status_8e2a {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.status_8e2a .banner_iron_cde9 {
    text-align: center;
}

.status_8e2a .center_3834 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.status_8e2a .up-7405 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.primary-70b7 {
    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);
}

.primary-70b7:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.shade_deba {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shade_deba {
        grid-template-columns: repeat(4, 1fr);
    }
}

.alert-pink-edd2 {
    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);
}

.alert-pink-edd2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pro-22a9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.last-02b9 {
    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);
}

.tall_5fb0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.banner-7c47 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.chip-07cb {
    color: var(--text-gray);
    line-height: 1.6;
}

.huge-9474 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.heading_0fe3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.preview-dirty-2af7 {
    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);
}

.card_new_50a9 {
    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;
}

.card_new_50a9.border_1e58 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.card_new_50a9.table-5c00 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.card_new_50a9.small_5c65 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.card_new_50a9.silver_12d7 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.card_new_50a9.top-a269 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.article_7a5f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.brown-567c {
    color: var(--text-gray);
    line-height: 1.6;
}

.hidden-top-7332 {
    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);
}

.simple-0f6a {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.small-5fd6 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.small-5fd6 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;
}

.small-5fd6 li:last-child {
    border-bottom: none;
}

.small-5fd6 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.panel-7e3f {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .panel-7e3f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .panel-7e3f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.layout_tall_c446 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.layout_tall_c446:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.layout_tall_c446.table_709b {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .layout_tall_c446.table_709b {
        grid-column: span 3;
    }
}

.input-b51e {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.layout_tall_c446.table_709b .input-b51e {
    background: rgba(6, 182, 212, 0.1);
}

.item_c7fc {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.module_b95a {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.layout_tall_c446.table_709b .module_b95a {
    color: var(--info-color);
}

.button_small_2841 {
    padding: 1.5rem;
    text-align: center;
}

.current_d490 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.layout_tall_c446.table_709b .current_d490 {
    color: var(--info-color);
}

.focus-d269 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.label_218a {
    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 */
.message_liquid_8441 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .message_liquid_8441 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.grid_slow_d007 {
    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);
}

.grid_slow_d007:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.lower_189f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.south_3d5e {
    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);
}

.sort_south_6dd7 {
    font-size: 2rem;
    flex-shrink: 0;
}

.icon_0e4d {
    flex: 1;
}

.primary_8c87 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tertiary_bronze_bb6a {
    color: var(--text-gray);
    line-height: 1.6;
}

.dim-1ae4 {
    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);
}

.detail-red-4611 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.hard_eb1a {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.widget_stale_7fb0 {
    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);
}

.content_focused_6ff2 {
  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);
}

.content_focused_6ff2 .banner_iron_cde9 {
    text-align: center;
}

.content_focused_6ff2 .footer-upper-f3fe {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.content_focused_6ff2 .center_3834 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.modal-warm-340f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.chip-7476 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.section-paper-30e4 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tall_c305 {
    color: var(--text-gray);
    line-height: 1.6;
}

.input-b352 {
    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);
}

.article-current-9048 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.header-02a0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.item-west-9d4f {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .item-west-9d4f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .item-west-9d4f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.logo-ec28 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.logo-ec28:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.overlay-top-2319 {
    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);
}

.caption_e3a8 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.wide-3ae6 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.stone_072a {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stone_072a.chip_pro_3abb {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.stone_072a.container_628f {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.stone_072a.liquid_616e {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.component-green-e332 {
    padding: 1.5rem;
    text-align: center;
}

.under-676a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.icon-1071 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.icon-1071 .slider_prev_6c02 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.header_5e7f {
    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);
}

.header_5e7f:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.article-south-8a7c {
  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);
}

.left_af65 {
    text-align: center;
}

.left_af65 .footer-upper-f3fe {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.left_af65 .center_3834 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.logo-876e { text-align: center; }
.down_d483 { text-align: left; }
.motion_7a1c { text-align: right; }

.component-small-f104 { margin-bottom: 0; }
.east-95b3 { margin-bottom: 0.5rem; }
.stale_9a0c { margin-bottom: 1rem; }
.list-609b { margin-bottom: 1.5rem; }
.shadow-8400 { margin-bottom: 2rem; }

.block_copper_5738 { margin-top: 0; }
.copper_7e04 { margin-top: 0.5rem; }
.gallery-black-abec { margin-top: 1rem; }
.title_6f56 { margin-top: 1.5rem; }
.last-f3e1 { margin-top: 2rem; }

.fn-hidden-b4e4 { display: none; }
.fn-visible-b4e4 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .tabs_light_5503 {
        padding: 6rem 0 3rem;
    }
    
    .detail-de97 {
        text-align: center;
    }
    
    .block-3623 {
        text-align: center;
    }
    
    .hover-b331 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .silver-a57b,
    .label_ae6b,
    .button-33b2,
    .thumbnail-north-4ff9 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .tabs_light_5503 {
        background: none;
    }
}

/* Providers Section */
.paragraph-1134 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.badge_bright_4f4f {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .badge_bright_4f4f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .badge_bright_4f4f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.module_right_ec80 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.module_right_ec80:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.alert_2d1c {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.paragraph-next-078a {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.video_08ed {
    list-style: none;
    padding: 0;
}

.video_08ed li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.video_08ed li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.shadow-0748 {
    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);
}

.shadow-0748 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.bronze_c4b4 {
    padding: var(--section-padding);
}

.menu-7b6e {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .menu-7b6e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.copper-085a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.copper-085a:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.detail_05e9 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.clean-7beb {
    display: flex;
    flex-direction: column;
}

.preview-middle-1c5a {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.pink-55ba {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.focused_0dc8 {
    color: var(--accent-color);
}

.popup_fresh_c4ea {
    font-size: 1.25rem;
}

.primary_e6d4 {
    margin-bottom: 1rem;
}

.primary_e6d4 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.white-9ca7 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.summary_stale_627e {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.banner_iron_cde9 {
    text-align: center;
}

.footer-upper-f3fe {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.center_3834 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.nav-cc3b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.row-down-7911 {
    margin: 2rem 0;
}

.badge-935c {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.badge-935c .table-lite-f9ea {
    font-size: 2rem;
    flex-shrink: 0;
}

.widget-9aa4 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.gas-44d8 {
    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;
}

.gas-44d8:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.pagination-1bac {
    font-size: 2rem;
}

.center_8bd3 {
    display: flex;
    flex-direction: column;
}

.easy-04e0 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.tabs_67c1 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.detail_2c1e {
    padding: var(--section-padding);
}

.mask_bf69 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .mask_bf69 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .mask_bf69 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.carousel-3ee7 {
    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);
}

.carousel-3ee7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.carousel-3ee7 .footer-upper-f3fe {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.carousel-3ee7 .center_3834 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.carousel-3ee7 .west-5899 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.shade-fcf7 {
    margin-top: 4rem;
}

.narrow-fcde {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.description-thick-6fc2 {
    overflow-x: auto;
}

.copper-c702 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.copper-c702 thead {
    background: var(--accent-color);
}

.copper-c702 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.copper-c702 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.copper-c702 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.copper-c702 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.feature-9ea9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.steel-e7a0 {
    max-width: 900px;
    margin: 0 auto;
}

.stale-f3c3 {
    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);
}

.stale-f3c3:hover {
    border-color: var(--accent-color);
}

.out_c667 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.out_c667 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.main-111a {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.stale-f3c3.fn-active-b4e4 .main-111a {
    transform: rotate(45deg);
}

.pagination_8146 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.stale-f3c3.fn-active-b4e4 .pagination_8146 {
    max-height: 1000px;
}

.pagination_8146 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.sidebar-6f8a {
    padding: var(--section-padding);
}

.column_paper_316a {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.tiny_0cd3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.sort-cool-a52a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .sort-cool-a52a {
        grid-template-columns: repeat(2, 1fr);
    }
}

.soft-fd8f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.media_lower_0b2a {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.photo-c72d {
    font-size: 2rem;
}

.breadcrumb-tiny-8620 {
    color: var(--text-white);
    margin: 0;
}

.focused-7b0b {
    list-style: none;
    padding: 0;
}

.focused-7b0b li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.focused-7b0b li:last-child {
    border-bottom: none;
}

.grid_cool_8535 {
    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);
}

.grid_cool_8535 p {
    color: var(--success-color);
    margin: 0;
}

.heading-rough-25d7 {
    margin-top: 3rem;
}

.description-cold-ad61 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.lower_02f5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .lower_02f5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.photo_iron_9689 {
    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);
}

.left-1ffa {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.photo_iron_9689 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.tooltip_fixed_7526 {
    padding: var(--section-padding);
}

.element_motion_f8f8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .element_motion_f8f8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.paragraph-7bcc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.paragraph-7bcc:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.section-center-387b {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.liquid-8f36 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.out-662a {
    flex: 1;
}

.primary-wood-e47c {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.green_174f {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.progress_3e9e {
    color: var(--text-gray);
    line-height: 1.6;
}

.list-b750 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.list-b750:last-child {
    border-bottom: none;
}

/* Comparison Section */
.orange_348c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.alert_steel_34c8 {
    padding: var(--section-padding);
}

.glass-885e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.text-ff3a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .text-ff3a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.shadow_cool_3ffd {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.texture_3628, .logo-bd0c, .section-wide-87db {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.section-wide-87db {
    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 */
.hidden-afd0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.info-1d69 {
    margin: 2rem 0;
}

.description_glass_e4dc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.card_0358 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.button-d5cf {
    list-style: none;
    padding: 0;
}

.button-d5cf 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;
}

.button-d5cf li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.button-d5cf li:last-child {
    border-bottom: none;
}

.backdrop-861c {
    text-align: center;
    margin-top: 2rem;
}

.label-3e55 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.grid_dca1 {
    padding: var(--section-padding);
}

.label-bdc6 {
    margin: 2rem 0;
}

.green-4f23 {
    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) {
    .green-4f23 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.green-4f23:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.primary_9f8f {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.button_tiny_b773 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.badge-5a2d {
    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;
}

.icon-bac0 {
    flex: 1;
}

.icon-d565 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.clean_57ba {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.primary-east-88ee {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.container_f926 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .container_f926 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.west_d5c8 {
    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);
}

.west_d5c8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.west_d5c8 .footer-upper-f3fe {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.west_d5c8 .center_3834 {
    color: var(--text-gray);
    font-size: 1rem;
}

.stone_db3b {
    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);
}

.easy_d39c {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.easy_d39c strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.light_a368 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .light_a368 {
        grid-template-columns: 1fr 1fr;
    }
}

.wrapper-379b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.section-b1ad {
    margin-bottom: 1.5rem;
}

.section-b1ad label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.section-b1ad input,
.section-b1ad 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;
}

.section-b1ad input:focus,
.section-b1ad select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.top_34a5 {
    width: 100%;
    margin-top: 1rem;
}

.tooltip-yellow-b78c {
    display: flex;
    align-items: center;
}

.image_265b {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.list_silver_5239 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.yellow_224b {
    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;
}

.photo_e617 {
    color: var(--text-gray);
}

.top-66aa {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.dynamic_b43d {
    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);
}

.dynamic_b43d p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.dim-2229 {
    margin-top: 3rem;
}

.message_dark_30f1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.pagination_ba8e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.banner_motion_e5d3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.notice-464f {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.notice-464f:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.in_1318 {
    padding: var(--section-padding);
}

.new-69e7 {
    margin: 2rem 0;
}

.card-selected-f65c {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.feature-3b6a {
    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;
}

.feature-3b6a:hover, .feature-3b6a.fn-active-b4e4 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.status-239e {
    display: none;
}

.status-239e.fn-active-b4e4 {
    display: block;
}

.texture-tall-f934 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.active_small_4011 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.advanced_613b h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.advanced_613b ul {
    list-style: none;
    padding: 0;
}

.advanced_613b ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.advanced_613b ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.notification-bed0 {
    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 */
.breadcrumb-dynamic-36d2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.cool-1984 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.new-49f4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.warm-0b3d {
    color: var(--accent-color);
    margin: 0;
}

.paragraph-045c {
    display: flex;
    gap: 1.5rem;
}

.tag-pro-2783 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.gradient-aeb1 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.status_aa3a {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.status_aa3a.dropdown_3033 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status_aa3a.center-ddab {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.status_aa3a.preview_steel_ea25 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.popup-pink-a975 {
    margin-top: 2rem;
}

.right_279f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.active_top_727d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .active_top_727d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.warm-559c {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.form_9790 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.motion_2a13 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.wide_7d1e {
    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 */
.summary-in-6db3 {
    padding: var(--section-padding);
}

.texture_0c60 {
    margin: 2rem 0;
}

.bronze_8aba {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.banner-steel-ba9e {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.accordion-fresh-2aa4 {
    list-style: none;
    padding: 0;
}

.accordion-fresh-2aa4 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;
}

.accordion-fresh-2aa4 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.accordion-fresh-2aa4 li:last-child {
    border-bottom: none;
}

.focus-lite-3605 {
    margin: 2rem 0;
}

.row_2408 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.lower_eee9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .lower_eee9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.paragraph_52fc {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gallery_brown_f2ee {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.filter-d03c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.pink_f0d9 {
    margin-top: 2rem;
}

.link-dd78 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.component-inner-b3db {
    list-style: none;
    padding: 0;
}

.slow_5b84 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.slow_5b84 a {
    color: var(--accent-color);
    text-decoration: none;
}

.slow_5b84 a:hover {
    text-decoration: underline;
}

.filter_4daf {
    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 */
.content-edb5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.link-first-f36d {
    margin: 2rem 0;
}

.first_4e43 {
    margin-bottom: 3rem;
}

.first_4e43 .card_0358 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.message-25fe {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.feature_ffcd {
    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);
}

.feature_ffcd:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.dynamic_8e87 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .dynamic_8e87 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.button_inner_cd4f {
    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 */
.top_dadc {
    padding: var(--section-padding);
}

.article-wood-8ca1 {
    margin: 2rem 0;
}

.short_ad32 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.up_9ce7 {
    overflow-x: auto;
    margin: 2rem 0;
}

.lower-40c8 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.shade_bright_2903 {
    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;
}

.box_next_5bf0 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.logo-c0cf {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .logo-c0cf {
        grid-template-columns: repeat(3, 1fr);
    }
}

.container_17f9 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.container_17f9 .table-lite-f9ea {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.container_17f9 .notice_f961 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.selected-72fb {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.article-next-dba0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.logo_5c2d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .logo_5c2d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.primary_5a1a {
    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;
}

.primary_5a1a:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.form_b893 {
    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);
}

.wrapper-liquid-358f {
    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;
}

.module_37b1 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.static-5117 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.shade_paper_365c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.complex-ec42 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.frame-52b7 {
    color: var(--text-white);
    font-weight: 600;
}

.secondary_motion_f3e8 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.widget-1d8e {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.widget-1d8e .accordion-complex-fdbd {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.box_active_2d38 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .box_active_2d38 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.description_3ac9 {
    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);
}

.description_3ac9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.description_3ac9 .footer-upper-f3fe {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.description_3ac9 .center_3834 {
    color: var(--text-gray);
    font-size: 1rem;
}

.carousel_cool_2d17 {
    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);
}

.detail-4d92 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.detail-4d92 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.block-narrow-2e00 {
    margin: 2rem 0;
}

.prev_4d94 {
    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);
}

.prev_4d94:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.main_f762 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.pressed-f28c {
    flex: 1;
}

.text_steel_51a2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.texture_59cf {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.module_smooth_e08c {
    margin: 2rem 0;
}

.focus_6469 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.focus_6469 .notice_f961 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.focus_6469 .tag_6d35 {
    color: var(--text-gray);
    margin: 0;
}

.large_e92e {
    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);
}

.large_e92e .hero-fluid-a662 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.selected-72fb {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.gradient-41ee {
    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;
}

.filter_00cf {
    flex: 1;
}

.cool-ef82 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.north_9223 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.box_bc86 {
    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;
}

.message_d0de {
    flex: 1;
}

.pro_4c36 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.surface-4481 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.left-e1b3 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.bright-6d08 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.top_a6b6 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.top_a6b6 .accordion-complex-fdbd {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.mask_easy_6995 {
    margin-top: 2rem;
}

.mask_easy_6995 .description-cold-ad61 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.aside-dd14 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.header-4235 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .header-4235 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.header-4235 .banner_iron_cde9 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.mask-e66f {
    margin: 2rem 0;
}

.grid_2b9d {
    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 */
.tag-outer-efa5 {
    padding: var(--section-padding);
}

.steel-b6ab {
    margin-top: 1rem;
}

.red-5b89 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.red-5b89 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.red-5b89 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.gradient-e895 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.selected_ef9e {
    margin: 2rem 0;
}

.disabled-ae88 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.current-dd8a {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.sidebar_b597 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.motion-be76 {
    margin: 2rem 0;
}

.soft-d5e0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.soft-d5e0 .card_0358 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.dim_1273 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .dim_1273 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.banner_1631 {
    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);
}

.pro_103f {
    color: var(--text-white);
    font-weight: 600;
}

.dirty-e2c3 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.overlay-clean-cd4c {
    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);
}

.overlay-clean-cd4c p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.layout_f2cb {
    padding: var(--section-padding);
}

.alert_tiny_70b3 {
    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;
}

.alert_tiny_70b3:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.fast-0f3a {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fast-0f3a .left-1ffa {
    font-size: 2rem;
    flex-shrink: 0;
}

.fast-0f3a .gold_96a9 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.card_c22d {
    flex: 1;
}

.preview-blue-e079 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hero_e630 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero_e630 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.hero_e630 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.notification-slow-f5a0 {
    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);
}

.notification-slow-f5a0 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.notification-slow-f5a0 strong {
    color: var(--warning-color);
}

/* Slots Section */
.button_86d7 {
    padding: var(--section-padding);
}

.dark_3820 {
    margin: 2rem 0;
}

/* Table Games Section */
.link-ce81 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.small-cc61 {
    margin: 2rem 0;
}

.shadow_ba7f {
    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);
}

.shadow_ba7f:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.shadow_ba7f .article_stone_727f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.shadow_ba7f .summary_pressed_40bf {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.gallery_fixed_91fb {
    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);
}

.gallery_fixed_91fb .hero-fluid-a662 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.overlay-lower-efaf {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.breadcrumb_brown_46cc {
    margin: 2rem 0;
}

.description-hard-62ec {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.nav_44f5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.heading_current_f4a0 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.dim-22a0 {
    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);
}

.dim-22a0:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.dim-22a0.fn-active-b4e4 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.card-lower-8678 {
    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);
}

.highlight_5167 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.highlight_5167 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.backdrop_e624 {
    padding: var(--section-padding);
}

.pink-f5c4 {
    margin: 2rem 0;
}

.grid_active_451b {
    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);
}

.grid_active_451b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .grid_active_451b {
        flex-direction: column;
        align-items: flex-start;
    }
}

.label-9425 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.steel-88f2 {
    flex: 1;
}

.new-65c0 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.popup_477c {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.background_current_ac68 {
    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;
}

.block-liquid-5574 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.dropdown-4c4b {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.upper-f034 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.box-liquid-530b {
    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;
}

.box-liquid-530b:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.media_2ed7 {
    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);
}

.shade-bronze-7967 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.shade-bronze-7967 strong {
    color: var(--accent-color);
}

/* New Games Section */
.accordion-e847 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.description-ea16 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .description-ea16 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .description-ea16 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.full_11a6 {
    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;
}

.full_11a6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.secondary-full-88bc {
    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;
}

.overlay-b8ce {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.smooth-300b {
    font-size: 2rem;
}

.over-c306 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.video-pink-3128 {
    flex: 1;
}

.border_84b1 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.card_d570 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.red-1d08 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.accordion_457f {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.layout_1a80 {
    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;
}

.panel-paper-94ff {
    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;
}

.panel-paper-94ff:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.dropdown-rough-6ec2 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wood-3e9d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.glass-4bcd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .glass-4bcd {
        grid-template-columns: repeat(3, 1fr);
    }
}

.component-45a3 {
    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);
}

.hero-63c1 {
    color: var(--text-white);
    font-weight: 600;
}

.feature_pressed_9686 {
    color: var(--accent-color);
    font-weight: 600;
}

.hovered-9484 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.hovered-9484 strong {
    color: var(--accent-color);
}

/* Security Section */
.photo_f828 {
    padding: var(--section-padding);
}

/* Benefits Section */
.in-87ec {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.black-7204 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.chip-in-0659 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.mini-ed2f {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.active_2e98 {
    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) {
    .active_2e98 {
        flex-direction: column;
        gap: 1rem;
    }
}

.active_2e98:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.active_2e98 .box_bc86 {
    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;
}

.active_2e98 .message_d0de {
    flex: 1;
}

.active_2e98 .pro_4c36 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.active_2e98 .surface-4481 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.bright-cc09 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.bright-cc09 .primary_8c87 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.bright-cc09 .solid_3aec {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bright-cc09 .solid_3aec li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.bright-cc09 .solid_3aec li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.message_d89e {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.paper-9080 {
    padding: var(--section-padding);
}

.motion_c905 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .motion_c905 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.media-7d14 {
    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);
}

.media-7d14:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.media-7d14 .section_5733 {
    font-size: 2rem;
    flex-shrink: 0;
}

.media-7d14 .article-3e15 {
    flex: 1;
}

.media-7d14 .logo_1789 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.media-7d14 .wrapper-red-5720 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.message_tiny_2c3e {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.message_tiny_2c3e .gas_f3e7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.message_tiny_2c3e .secondary_under_0f17 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.message_tiny_2c3e .secondary_under_0f17 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);
}

.message_tiny_2c3e .secondary_under_0f17 li:last-child {
    border-bottom: none;
}

.message_tiny_2c3e .secondary_under_0f17 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;
}

.message_tiny_2c3e .secondary_under_0f17 li strong {
    color: var(--text-white);
}

.info_motion_ed8a {
    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);
}

.info_motion_ed8a p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.info_motion_ed8a strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.menu_3d58 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.advanced_cf49 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .advanced_cf49 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.alert-dynamic-f926 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.alert-dynamic-f926:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.message_8304 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.description-west-949e {
    font-size: 2rem;
}

.motion_3f35 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.progress-384b {
    flex: 1;
}

.hovered_910c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hovered_910c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.hovered_910c li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.disabled_ed7a {
    margin-top: 3rem;
}

.bronze_8aba {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.banner-steel-ba9e {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.accordion-fresh-2aa4 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accordion-fresh-2aa4 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.accordion-fresh-2aa4 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.accordion-fresh-2aa4 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.fresh_e69d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.row-91b2 {
    margin: 2rem 0;
}

.secondary_stale_48eb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.secondary_stale_48eb .card_0358 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.thick-2744 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .thick-2744 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.menu_next_08fb {
    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);
}

.menu_next_08fb:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.image_d494 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.table-fixed-e090 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.active_89b1 {
    padding: var(--section-padding);
}

.under-e8b0 {
    margin: 2rem 0;
}

.background_0513 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .background_0513 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .background_0513 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.black-9994 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.black-9994:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.cold_3d6b {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.dropdown_57b6 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.card_3e98 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.card_3e98.layout-97d0 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.tertiary-tiny-0236 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.element_motion_8a2e {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.box_top_63f1 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.article-d9c1 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.simple_3993 {
    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);
}

.simple_3993 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.simple_3993 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.widget_35fd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.stale-1c0a {
    margin: 2rem 0;
}

.stale_0518 {
    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) {
    .stale_0518 {
        flex-direction: column;
        gap: 1rem;
    }
}

.stale_0518:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.stale_0518::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);
}

.chip_mini_5a8f {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.slider_bottom_8487 {
    flex: 1;
}

.picture_west_b17f {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.button_south_836a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.button_south_836a li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.pressed_fc7a {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.top-df9b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.dynamic_0bca {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .dynamic_0bca {
        grid-template-columns: repeat(3, 1fr);
    }
}

.text-hovered-40be {
    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);
}

.mask-aaf3 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.container-5d37 {
    flex: 1;
}

.sidebar_orange_0103 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.smooth_8609 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.dynamic-2266 {
    margin-top: 2rem;
    text-align: center;
}

.blue-6b22 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.blue-6b22 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.shade_deba {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shade_deba {
        grid-template-columns: repeat(4, 1fr);
    }
}

.alert-pink-edd2 {
    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);
}

.alert-pink-edd2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.alert-pink-edd2 .card_blue_376d {
    font-size: 2rem;
    flex-shrink: 0;
}

.alert-pink-edd2 .icon-04e7 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.alert-pink-edd2 .form_short_0949 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.alert-pink-edd2 .complex_1d33 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.main_warm_c22f {
    padding: var(--section-padding);
}

.last-02b9 .right_12ee {
    flex: 1;
}

/* Promo Calendar Section */
.middle_9c0d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.medium_1736 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .medium_1736 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature_solid_d7c6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.list-full-404c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.backdrop-49e1 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.down-8cb4 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--secondary-bg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tabs_5a4d {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.feature-ae05 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.header_prev_6370 {
    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);
}

.header_prev_6370 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.header_prev_6370 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.focus-right-b233 {
    padding: var(--section-padding);
}

.feature_7488 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .feature_7488 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.component_pressed_8d03 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.upper_b667 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.avatar_c2a5 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.avatar_c2a5 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.item-huge-732d {
    margin-top: 3rem;
}

.item-huge-732d .bronze_8aba {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.item-huge-732d .banner-steel-ba9e {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.item-huge-732d .accordion-fresh-2aa4 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.item-huge-732d .accordion-fresh-2aa4 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.item-huge-732d .accordion-fresh-2aa4 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.item-huge-732d .accordion-fresh-2aa4 li strong {
    color: var(--warning-color);
}

.outline_3220 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.outline_3220 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.red_89bd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.caption_6398 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .caption_6398 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.west-7246 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.west-7246 .card_0358 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.tabs_11c1 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.heading_f917 {
    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);
}

.heading_f917:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.top_2a8e {
    font-size: 2rem;
    flex-shrink: 0;
}

.gold_114d {
    flex: 1;
}

.hero-6849 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.brown_4810 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.sort_862e {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.focus_pro_b9fb {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.accent_2505 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .accent_2505 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-medium-a305 {
    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);
}

.footer-medium-a305:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.hovered-25b7 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.image-0c73 {
    color: var(--text-gray);
    font-size: 1rem;
}

.easy_d39c {
    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);
}

.form-2842 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.form-2842 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.tabs_77b1 { 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; }
.border-2c69, .purple-563e { max-width:100%; height:auto; }

.full_088e, .cool-773b, .box_0575 { white-space:normal; }

.detail-de97,
.block-3623,
.message_liquid_8441,
.shade_deba,
.module_smooth_e08c,
.item-west-9d4f {
  flex-wrap:wrap;
}

[class*="grid"],
.accent_2505,
.background_0513,
.carousel_narrow_b4fe {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.tabs_light_5503 img,
.block-3623 img,
.focus_46e2 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.block-silver-fbdb, .gradient-west-33e8,
.primary_237b, .status_red_23d6 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.description-thick-6fc2 { width:100%; overflow-x:auto; }
.description-thick-6fc2 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.badge_bright_4f4f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .badge_bright_4f4f {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.module_right_ec80 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.mask_bf69,
.pressed_bab3,
.breadcrumb_old_914b,
.action-3452,
.container_f926,
.accent_2505,
.background_0513,
.carousel_narrow_b4fe,
.article-south-8a7c,
.pink-f5c4,
.badge_bright_4f4f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .mask_bf69,
  .pressed_bab3,
  .breadcrumb_old_914b,
  .action-3452,
  .container_f926,
  .accent_2505,
  .background_0513,
  .carousel_narrow_b4fe,
  .article-south-8a7c,
  .pink-f5c4,
  .badge_bright_4f4f {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.carousel-3ee7,
.west_d5c8,
.footer-medium-a305,
.stale-b092,
.black-9994,
.left_af65,
.grid_active_451b,
.module_right_ec80 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.menu-2f22,
.section_bbbc,
.progress-12d9 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.menu-2f22 > *,
.section_bbbc > *,
.progress-12d9 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 161b */
.shadow-element-r8 {
  padding: 0.4rem;
  font-size: 13px;
  line-height: 1.2;
}
