/* {$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;
}

.brown_1ae6 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.focus-bde9 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .focus-bde9 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .focus-bde9 {
        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 */
.gallery_top_e31f {
    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);
}

.outer_db0e {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .outer_db0e {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .tabs_first_8016 {
        grid-column: 1;
    }
    
    .tall-395f {
        grid-column: 2;
    }
    
    .grid-79a9 {
        grid-column: 3;
    }
}

.tabs_first_8016 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.tabs_first_8016:hover img {
    transform: scale(1.05);
}

/* Navigation */
.rough_e999 {
    display: none;
}

@media (min-width: 1024px) {
    .rough_e999 {
        display: block;
    }
}

/* Grouped Navigation */
.input_efd0 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.panel-right-6376 {
    position: relative;
}

.list_7016 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.panel-right-6376 .hover_5692 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.hover_5692 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.hidden_current_7541 {
    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;
}

.hidden_current_7541:hover,
.hidden_current_7541.fn-active-223c {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.motion-b267 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .motion-b267 {
        display: flex;
    }
}

/* Mobile Register Button */
.tall-395f {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .tall-395f {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.media-wood-e64a {
    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;
}

.media-wood-e64a::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 */
.grid-79a9 {
    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) {
    .grid-79a9 {
        display: none;
    }
}

.grid-79a9 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.grid-79a9.fn-active-223c span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.grid-79a9.fn-active-223c span:nth-child(2) {
    opacity: 0;
}

.grid-79a9.fn-active-223c span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.active-basic-33bd {
    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;
}

.active-basic-33bd.fn-active-223c {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.dropdown_plasma_6f1c {
    overflow: hidden;
}

.button_dynamic_965f {
    list-style: none;
    padding: 0.75rem 0;
}

.menu_e91c {
    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;
}

.menu_e91c:hover,
.menu_e91c.fn-active-223c {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.menu_e91c.carousel-slow-cf40 {
    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;
}

.menu_e91c.carousel-slow-cf40::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 */
.box_4392 {
    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;
}

.text_2ff5 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.text_2ff5:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.fixed-1a38 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.fixed-1a38:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.last-e2d5 {
    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;
}

.last-e2d5:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.outline-3906 {
    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;
}

.dropdown-fresh-7651 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.dropdown-fresh-7651:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.row-28ba {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.row-28ba:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.up-fd6d {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.up-fd6d: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);
}

.carousel-static-2044 {
    font-size: 1em;
    font-weight: 700;
}

.title_911a {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.easy_5e19 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.easy_5e19::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;
}

.pagination-05b6 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .pagination-05b6 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.outline_9c7a {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.plasma-002f {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.silver_f95d {
    margin-bottom: 2rem;
}

.wrapper-purple-fe5a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .wrapper-purple-fe5a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.silver-ffb7 {
    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);
}

.wide_a742 {
    font-size: 1.5rem;
}

.west_691e {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.outline_c406 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.container_wood_4f60 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.container_wood_4f60:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.selected-fd8d {
    text-align: center;
    margin-bottom: 3rem;
}

.upper-d5a9 {
    margin-bottom: 1rem;
}

.pattern-orange-3074 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.overlay-1bdd {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .overlay-1bdd {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .overlay-1bdd.photo-e01d {
        direction: rtl;
    }
    
    .overlay-1bdd.photo-e01d > * {
        direction: ltr;
    }
}

.progress-2a19 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.progress-2a19:first-child {
    margin-top: 0;
}

.paragraph-thick-7585 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.widget_30ce {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.widget_30ce:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.wrapper_static_5546 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .wrapper_static_5546 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-pressed-00b3 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.row_current_d335 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.icon_mini_c560 {
    list-style: none;
}

.icon_mini_c560 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.icon_mini_c560 li:last-child {
    border-bottom: none;
}

/* Games Features */
.hero-hovered-94b2 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.pressed_999a {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.accordion-white-5b01 {
    font-size: 2rem;
    flex-shrink: 0;
}

.widget-fixed-e609 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.primary_96a6 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.avatar_small_7f37 {
    margin: 2rem 0;
}

.summary-dynamic-2cb3 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.in-a956 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.lower_b955 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.left_4642 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.accent-warm-9944 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accent-warm-9944 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.picture_current_cfd0 {
    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);
}

.picture_current_cfd0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.component-fafc {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.gold-b960 {
    font-size: 1.5rem;
}

.element_fa2a {
    color: var(--accent-color);
    margin: 0;
}

.shade-74fe {
    list-style: none;
}

.shade-74fe li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.shade-74fe li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.in_cfe8 {
    margin: 2rem 0;
}

.media-6483 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.hero-cd38 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .hero-cd38 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hard-2193 {
    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);
}

.dim_d3e4 {
    font-size: 1.25rem;
}

.notice_active_b3df {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.picture-mini-e396,
.medium-4f78 {
    text-align: center;
    margin: 2rem 0;
}

.title-yellow-5018,
.focus-8d40 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.breadcrumb_bronze_74cb {
    margin: 2rem 0;
    text-align: center;
}

.surface_fluid_0668 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.surface_fluid_0668::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;
}

.disabled-3931 {
    position: relative;
    z-index: 1;
}

.alert-e597 {
    margin-bottom: 1rem;
}

.slider-5b39 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.red-f62b {
    margin-bottom: 3rem;
}

.complex_9a3c {
    margin-top: 3rem;
}

.title_light_a413 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .title_light_a413 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.title_light_a413 .silver-ffb7 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.complex-9994 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.blue-45e5 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.card-0809 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.frame_55e4 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .frame_55e4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .frame_55e4 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.notice_e090 {
    margin-bottom: 1rem;
}

.left-a887 img {
    margin-bottom: 1rem;
}

.soft-5e47 {
    color: var(--text-gray);
    line-height: 1.6;
}

.backdrop_85c2 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.upper-ab39 {
    list-style: none;
}

.upper-ab39 li {
    margin-bottom: 0.5rem;
}

.upper-ab39 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.upper-ab39 a:hover {
    color: var(--accent-color);
}

.green_ae06 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.element-slow-d4d6 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: 1.25rem;
    transition: var(--transition-fast);
}

.element-slow-d4d6:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.accordion_motion_06ac {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.accordion_motion_06ac p {
    margin-bottom: 0.25rem;
}

.lite-174a {
    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) {
    .lite-174a {
        flex-direction: row;
    }
}

.mask-dim-4649 {
    text-align: center;
}

@media (min-width: 768px) {
    .mask-dim-4649 {
        text-align: left;
    }
}

.mask-dim-4649 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.dynamic_9e8b {
    font-size: 0.75rem !important;
}

.hard_c60e {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.yellow_6678 {
    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);
    }
}

.status-b11e {
    animation: fadeInUp 0.6s ease-out;
}

.element_light_8d95 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.container_b8ea {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .container_b8ea {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.easy_fe4f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .easy_fe4f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.heading_pressed_d865 {
    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);
}

.heading_pressed_d865 .accordion-white-5b01 {
    font-size: 1.25rem;
}

.heading_pressed_d865 .stale-24f4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.notification_red_e3c5 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .notification_red_e3c5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.link-0a38 {
    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);
}

.link-0a38:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.short_8f2d {
    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);
}

.secondary-98da {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.popup-silver-cdcf {
    color: var(--text-gray);
    line-height: 1.6;
}

.widget_left_8365 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.left_a2ce {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.left_a2ce .widget-fixed-e609 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.left_a2ce .primary_96a6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.thick_99a0 {
    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);
}

.pattern_2041 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.pattern_2041 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.pattern_2041 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.message_e01f {
    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);
}

.detail-a991 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-lite-eb35 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-lite-eb35 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.hero-lite-eb35 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);
}

.hero-lite-eb35 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.hero-lite-eb35 input::placeholder {
    color: var(--text-muted);
}

.card-7218 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.frame-wood-7f9f {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.frame-wood-7f9f input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.small-7837 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.small-7837:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.hero-cd38 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hero-cd38 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hard-2193 {
    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);
}

.hard-2193 .dim_d3e4 {
    font-size: 1.25rem;
}

.hard-2193 .notice_active_b3df {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.center_a336 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.description-focused-db10 {
    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);
}

.description-focused-db10 .accordion-white-5b01 {
    font-size: 2rem;
    flex-shrink: 0;
}

.description-focused-db10 .widget-fixed-e609 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.description-focused-db10 .primary_96a6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.soft-77f5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.label_light_6389 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.label_light_6389 .paragraph_f652 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.label_light_6389 .hot-e480 {
    color: var(--text-gray);
    line-height: 1.6;
}

.backdrop_black_54ef {
    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);
}

.pattern-664f {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .pattern-664f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.overlay-plasma-3353 {
    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);
}

.overlay-plasma-3353:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.stale_5abf {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.panel-glass-4fcf {
    flex: 1;
}

.easy_de36 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.carousel-76ce {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.progress-slow-d911 {
    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);
}

.progress-slow-d911:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.hard_8131 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hard_8131 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.overlay_mini_df92 {
    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);
}

.overlay_mini_df92:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.surface-south-c856 {
    font-size: 2rem;
    flex-shrink: 0;
}

.wrapper_139c {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.copper-7df7 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.label-glass-dcef {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.modal_8048 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.info_clean_1978 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.basic_6b2e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.basic_6b2e .article_lower_9039 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.basic_6b2e .shade_a0c1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.east-d04d {
    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);
}

.wood_5afd {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.under-f96d {
    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);
}

.under-f96d .accordion-white-5b01 {
    font-size: 2rem;
    flex-shrink: 0;
}

.under-f96d .widget-fixed-e609 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.under-f96d .primary_96a6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tag-f09f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tag-f09f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.silver_0a74 {
    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);
}

.silver_0a74:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.info-dark-8827 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .info-dark-8827 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.widget_925b {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.widget_925b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.mini_d473 {
    font-size: 2rem;
    flex-shrink: 0;
}

.bronze_73b3 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.in-a956 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.dark-33b4 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.wrapper_dark_35fe {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sort_west_e868 {
    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);
}

.sort_west_e868:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.breadcrumb-top-cfdd {
    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);
}

.stale-2784 {
    flex: 1;
}

.wide-dc6b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.top-8d5a {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.element_559b {
    color: var(--text-gray);
    line-height: 1.6;
}

.link_fixed_9ca5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.video_8140 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.video_8140 .paragraph_f652 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.video_8140 .hot-e480 {
    color: var(--text-gray);
    line-height: 1.6;
}

.medium-4f78 {
    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);
}

.article-stone-e219 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .article-stone-e219 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.north-4213 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .north-4213 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.slider_d81b {
    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);
}

.slider_d81b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.frame_hard_e47f {
    font-size: 2rem;
    flex-shrink: 0;
}

.hero_new_7810 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.active_motion_1a10 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.south_9965 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.avatar_soft_3b12 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.old-0960 {
    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);
}

.input_fluid_4660 {
    font-size: 2rem;
    flex-shrink: 0;
}

.outline_easy_926a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.fluid_ccca {
    color: var(--text-gray);
    line-height: 1.6;
}

.wood_5afd {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.under-f96d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.under-f96d .widget-fixed-e609 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.under-f96d .primary_96a6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.panel_fast_b61c {
    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);
}

.carousel_8152 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .carousel_8152 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .carousel_8152 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.link-wide-bfb1 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.link-wide-bfb1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.over-aafb {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.feature-70ce {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.top-e035 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.tag-wide-c591 {
    padding: 1.5rem;
}

.layout_58dd {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.video_a585 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.video_a585 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.video_a585 li:last-child {
    border-bottom: none;
}

.video_a585 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.main-1f53 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .main-1f53 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.highlight_2e4e {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.highlight_2e4e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.info_a084 {
    font-size: 2rem;
    flex-shrink: 0;
}

.filter-action-2610 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nav-f633 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.status_1f90 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.fast_e301 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.content_de77 {
    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);
}

.heading-2fe6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.backdrop_paper_aef2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.surface-b68c {
    color: var(--text-gray);
    line-height: 1.6;
}

.hidden_b22b {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.breadcrumb-green-984f {
    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);
}

.footer_af99 {
    text-align: center;
}

.new_b200 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.popup-0e8d {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.background_silver_c15d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.steel_59d4 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.steel_59d4 .widget-fixed-e609 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.steel_59d4 .primary_96a6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.caption-thick-4edf {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .caption-thick-4edf {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .caption-thick-4edf {
        grid-template-columns: repeat(4, 1fr);
    }
}

.box-428a {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.box-428a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.background-0f80 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.info-dark-bf8a {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.widget-fixed-e609 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.media_8aad {
    padding: 1.5rem;
}

.primary_96a6 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.message_66b5 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.message_66b5 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;
}

.message_66b5 li:last-child {
    border-bottom: none;
}

.message_66b5 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.header_2ccc {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.video-hard-6838 {
    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);
}

.video-hard-6838:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.dropdown_fluid_9f62 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pink-30da {
    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);
}

.short_8f2d {
    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;
}

.secondary-98da {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.popup-silver-cdcf {
    color: var(--text-gray);
    line-height: 1.6;
}

.sidebar_01c0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.section-e439 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.layout_liquid_8585 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.next_52bb {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.icon_f426 {
    display: flex;
    gap: 1rem;
}

.icon_f426 .overlay-wide-5b97 {
    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;
}

.thumbnail_clean_2aa8 {
    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_9a28 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.alert-dirty-7a07 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.alert-dirty-7a07 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;
}

.alert-dirty-7a07 li:last-child {
    border-bottom: none;
}

.alert-dirty-7a07 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.surface_0648 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .surface_0648 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .surface_0648 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.media-558d {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.media-558d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.filter-static-0ebe {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.gold-7dd5 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.article_lower_9039 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.description-39f1 {
    font-size: 1rem;
}

.shade_f0cd {
    padding: 1.5rem;
}

.shade_a0c1 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.item-stale-dedc {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.item-stale-dedc .footer_af99 {
    text-align: center;
}

.item-stale-dedc .popup-0e8d {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.item-stale-dedc .nav-red-373a {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.hard_465a {
    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);
}

.hard_465a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.secondary_black_80c1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .secondary_black_80c1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.link-easy-04a1 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.link-easy-04a1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.overlay-917d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.shadow-paper-eafe {
    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);
}

.hard_dcfe {
    font-size: 2rem;
    flex-shrink: 0;
}

.fluid-21f7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.slider_motion_c2c4 {
    color: var(--text-gray);
    line-height: 1.6;
}

.footer-6af6 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.focused_634d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.outer-ff17 {
    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);
}

.tertiary-simple-f8f8 {
    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;
}

.tertiary-simple-f8f8.pink_2095 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.tertiary-simple-f8f8.pagination_71b3 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.tertiary-simple-f8f8.picture_east_0fcc {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.tertiary-simple-f8f8.brown_724a {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.tertiary-simple-f8f8.tertiary-e9f9 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.out_1d7b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.motion-4ca1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.content-2439 {
    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);
}

.link_bronze_b6d2 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.soft-77f5 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.soft-77f5 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;
}

.soft-77f5 li:last-child {
    border-bottom: none;
}

.soft-77f5 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.hidden-81c3 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .hidden-81c3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hidden-81c3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.cool-85ce {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.cool-85ce:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.cool-85ce.heading-c32d {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .cool-85ce.heading-c32d {
        grid-column: span 3;
    }
}

.old_afe0 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.cool-85ce.heading-c32d .old_afe0 {
    background: rgba(6, 182, 212, 0.1);
}

.prev-3e2d {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.medium-3a58 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.cool-85ce.heading-c32d .medium-3a58 {
    color: var(--info-color);
}

.preview_small_209f {
    padding: 1.5rem;
    text-align: center;
}

.soft-3261 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.cool-85ce.heading-c32d .soft-3261 {
    color: var(--info-color);
}

.backdrop-a672 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.accent_fast_4817 {
    background: var(--primary-gradient);
    color: var(--primary-bg);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    display: inline-block;
}

/* Platform Page Specific Styles */
.down_9b6d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .down_9b6d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.left-3288 {
    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);
}

.left-3288:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.focused-5530 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.description-focused-db10 {
    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);
}

.dim_d3e4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.link_next_62ca {
    flex: 1;
}

.media-6483 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.progress_6669 {
    color: var(--text-gray);
    line-height: 1.6;
}

.filter_5339 {
    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);
}

.tag_48e3 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.summary_ac88 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.yellow_6678 {
    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);
}

.paragraph-c23c {
  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);
}

.paragraph-c23c .footer_af99 {
    text-align: center;
}

.paragraph-c23c .new_b200 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.paragraph-c23c .popup-0e8d {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.accent-first-4318 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.north_3935 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.heading-pressed-a277 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.fluid-49e4 {
    color: var(--text-gray);
    line-height: 1.6;
}

.border_red_be3d {
    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);
}

.small_83e4 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hero_b0bc {
    color: var(--text-gray);
    line-height: 1.6;
}

.west_6694 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .west_6694 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .west_6694 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer_prev_4365 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.footer_prev_4365:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.search_silver_a0c2 {
    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);
}

.east-e54c {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.lite-923a {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.info-prev-d699 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-prev-d699.pattern-smooth-99a5 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.info-prev-d699.action-0665 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.info-prev-d699.banner_9894 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.fixed-0ab1 {
    padding: 1.5rem;
    text-align: center;
}

.label_8ad6 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.progress-bronze-bf9e {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.progress-bronze-bf9e .form_2b35 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.nav-35d3 {
    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);
}

.nav-35d3:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.sort-lower-075e {
  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);
}

.frame_complex_0ab9 {
    text-align: center;
}

.frame_complex_0ab9 .new_b200 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.frame_complex_0ab9 .popup-0e8d {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.focus-glass-3f8e { text-align: center; }
.down-6984 { text-align: left; }
.primary_hard_f1d6 { text-align: right; }

.logo_d72c { margin-bottom: 0; }
.overlay_890f { margin-bottom: 0.5rem; }
.tiny_1000 { margin-bottom: 1rem; }
.motion_8109 { margin-bottom: 1.5rem; }
.focus_center_9fdd { margin-bottom: 2rem; }

.old_69d8 { margin-top: 0; }
.feature_dynamic_d9e5 { margin-top: 0.5rem; }
.background-red-ea64 { margin-top: 1rem; }
.tooltip-short-be5a { margin-top: 1.5rem; }
.popup-fluid-3ad1 { margin-top: 2rem; }

.fn-hidden-223c { display: none; }
.fn-visible-223c { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .easy_5e19 {
        padding: 6rem 0 3rem;
    }
    
    .pagination-05b6 {
        text-align: center;
    }
    
    .overlay-1bdd {
        text-align: center;
    }
    
    .wrapper-purple-fe5a {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .gallery_top_e31f,
    .active-basic-33bd,
    .surface_fluid_0668,
    .card-0809 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .easy_5e19 {
        background: none;
    }
}

/* Providers Section */
.copper_07bf {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.notice-simple-f5c3 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .notice-simple-f5c3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .notice-simple-f5c3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.main-184d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.main-184d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.column-selected-4a6b {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.description_static_97cb {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.logo-fresh-867c {
    list-style: none;
    padding: 0;
}

.logo-fresh-867c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.logo-fresh-867c li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.label-light-a65c {
    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);
}

.label-light-a65c p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.upper_9a32 {
    padding: var(--section-padding);
}

.carousel_in_39d7 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .carousel_in_39d7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.alert_stone_619d {
    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_stone_619d:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.selected-caa4 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.carousel_d2ce {
    display: flex;
    flex-direction: column;
}

.thumbnail-medium-49ac {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.list_c51a {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.section_wide_9d9b {
    color: var(--accent-color);
}

.surface_d2ee {
    font-size: 1.25rem;
}

.alert-7cd4 {
    margin-bottom: 1rem;
}

.alert-7cd4 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.list_stone_4fd7 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.tooltip_dirty_fb5e {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.footer_af99 {
    text-align: center;
}

.new_b200 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.popup-0e8d {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.photo_9fd2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.wrapper_8801 {
    margin: 2rem 0;
}

.summary_9bb9 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.summary_9bb9 .accordion-white-5b01 {
    font-size: 2rem;
    flex-shrink: 0;
}

.summary-d9b7 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.secondary-warm-dd9a {
    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;
}

.secondary-warm-dd9a:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.first_045a {
    font-size: 2rem;
}

.disabled-2f2d {
    display: flex;
    flex-direction: column;
}

.outline-fc8c {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.fast-3d5b {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.left-acfc {
    padding: var(--section-padding);
}

.wrapper-soft-7fdf {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .wrapper-soft-7fdf {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .wrapper-soft-7fdf {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tertiary-dirty-a708 {
    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);
}

.tertiary-dirty-a708:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.tertiary-dirty-a708 .new_b200 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.tertiary-dirty-a708 .popup-0e8d {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.tertiary-dirty-a708 .banner-c17c {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.focus-west-092e {
    margin-top: 4rem;
}

.status-4f07 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.lower_82fb {
    overflow-x: auto;
}

.lite_5ec1 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.lite_5ec1 thead {
    background: var(--accent-color);
}

.lite_5ec1 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.lite_5ec1 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.lite_5ec1 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.lite_5ec1 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.left-c87d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.description_1ad8 {
    max-width: 900px;
    margin: 0 auto;
}

.card_16b7 {
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-normal);
}

.card_16b7:hover {
    border-color: var(--accent-color);
}

.heading-85d9 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.heading-85d9 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.table_rough_a8c2 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.card_16b7.fn-active-223c .table_rough_a8c2 {
    transform: rotate(45deg);
}

.smooth-a659 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.card_16b7.fn-active-223c .smooth-a659 {
    max-height: 1000px;
}

.smooth-a659 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.breadcrumb-upper-5e9e {
    padding: var(--section-padding);
}

.pattern_2041 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.pressed_3489 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.background_ea9a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .background_ea9a {
        grid-template-columns: repeat(2, 1fr);
    }
}

.block-950c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.filter_under_8fa6 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.paper_a216 {
    font-size: 2rem;
}

.sidebar-74be {
    color: var(--text-white);
    margin: 0;
}

.aside_4c1e {
    list-style: none;
    padding: 0;
}

.aside_4c1e li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.aside_4c1e li:last-child {
    border-bottom: none;
}

.stale-8d6e {
    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);
}

.stale-8d6e p {
    color: var(--success-color);
    margin: 0;
}

.south_9be7 {
    margin-top: 3rem;
}

.description_9a28 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.grid_c430 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .grid_c430 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.link_paper_9d27 {
    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);
}

.slider_af90 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.link_paper_9d27 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.module_e884 {
    padding: var(--section-padding);
}

.photo-63af {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .photo-63af {
        grid-template-columns: repeat(3, 1fr);
    }
}

.glass_ac8f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.glass_ac8f:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.filter-center-6cab {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.badge_ae0d {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.west-f086 {
    flex: 1;
}

.alert-next-ffda {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.notification-clean-33f8 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.shadow-current-fef6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.primary_48a7 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.primary_48a7:last-child {
    border-bottom: none;
}

/* Comparison Section */
.red-ca8e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.basic-fdb4 {
    padding: var(--section-padding);
}

.background-0141 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.info-f20a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .info-f20a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.iron_8785 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.sidebar-fast-fdf3, .content-da13, .under-e960 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.under-e960 {
    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 */
.highlight-b784 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.current_1a89 {
    margin: 2rem 0;
}

.primary_ee12 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wood_d4d2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.cool_5724 {
    list-style: none;
    padding: 0;
}

.cool_5724 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;
}

.cool_5724 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.cool_5724 li:last-child {
    border-bottom: none;
}

.silver-6e5e {
    text-align: center;
    margin-top: 2rem;
}

.last_c8d3 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.form-middle-8b87 {
    padding: var(--section-padding);
}

.brown-90b0 {
    margin: 2rem 0;
}

.table-5a11 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
    gap: 1.5rem;
    transition: var(--transition-normal);
}

@media (max-width: 768px) {
    .table-5a11 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.table-5a11:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.small_471e {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.carousel-plasma-ceea {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.image_smooth_ff24 {
    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;
}

.dim-cd98 {
    flex: 1;
}

.button-north-3a67 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.status-462c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.list-fixed-c3ea {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.list-glass-9515 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .list-glass-9515 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.list-704c {
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.list-704c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.list-704c .new_b200 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.list-704c .popup-0e8d {
    color: var(--text-gray);
    font-size: 1rem;
}

.disabled_ebe9 {
    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);
}

.section_narrow_e9e8 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.section_narrow_e9e8 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.detail_02aa {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .detail_02aa {
        grid-template-columns: 1fr 1fr;
    }
}

.top_1326 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.next-ff52 {
    margin-bottom: 1.5rem;
}

.next-ff52 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.next-ff52 input,
.next-ff52 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;
}

.next-ff52 input:focus,
.next-ff52 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.pagination-pressed-6c52 {
    width: 100%;
    margin-top: 1rem;
}

.secondary_7c97 {
    display: flex;
    align-items: center;
}

.narrow-d666 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.hard_1e2e {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.modal_hard_bef4 {
    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;
}

.sort-e2cd {
    color: var(--text-gray);
}

.form-plasma-fe52 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.block-liquid-88ab {
    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);
}

.block-liquid-88ab p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.frame-medium-6846 {
    margin-top: 3rem;
}

.brown-c4f9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.hero_advanced_96d0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.banner-last-f255 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.steel_03c9 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.steel_03c9:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.accent_9917 {
    padding: var(--section-padding);
}

.large-945a {
    margin: 2rem 0;
}

.over_1c29 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.status_iron_5c27 {
    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;
}

.status_iron_5c27:hover, .status_iron_5c27.fn-active-223c {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.complex-c7ae {
    display: none;
}

.complex-c7ae.fn-active-223c {
    display: block;
}

.message_fe8a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shadow-886d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.shade-bb71 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.shade-bb71 ul {
    list-style: none;
    padding: 0;
}

.shade-bb71 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.shade-bb71 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.label_a3d1 {
    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 */
.backdrop_15cf {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.stale_6df0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wood-2c31 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.gallery-0800 {
    color: var(--accent-color);
    margin: 0;
}

.item-hot-a224 {
    display: flex;
    gap: 1.5rem;
}

.button-center-6f9a {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.video_50e3 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.current-99b9 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.current-99b9.element_8833 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.current-99b9.hidden_black_1e27 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.current-99b9.pagination-steel-43b6 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.component-9cf5 {
    margin-top: 2rem;
}

.popup-action-b5c4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.surface_dark_3519 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .surface_dark_3519 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.aside_fe07 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.highlight-6eec {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.image-active-b692 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.cold_cab5 {
    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 */
.detail-8104 {
    padding: var(--section-padding);
}

.accent_56c5 {
    margin: 2rem 0;
}

.huge-cd3f {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.fixed-894d {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.green-9e28 {
    list-style: none;
    padding: 0;
}

.green-9e28 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;
}

.green-9e28 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.green-9e28 li:last-child {
    border-bottom: none;
}

.row-rough-b6d4 {
    margin: 2rem 0;
}

.copper_f289 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.notice_blue_7557 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .notice_blue_7557 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.heading-20a5 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.container-silver-8b6e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.aside_f76e {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.warm-2ae1 {
    margin-top: 2rem;
}

.easy_de36 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.layout-6287 {
    list-style: none;
    padding: 0;
}

.border_be84 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.border_be84 a {
    color: var(--accent-color);
    text-decoration: none;
}

.border_be84 a:hover {
    text-decoration: underline;
}

.panel_right_7966 {
    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 */
.hover_new_4a2e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.module_full_8ede {
    margin: 2rem 0;
}

.border_gold_3fff {
    margin-bottom: 3rem;
}

.border_gold_3fff .wood_d4d2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.accordion-7f21 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.progress-thick-2566 {
    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);
}

.progress-thick-2566:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.south-46ca {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .south-46ca {
        grid-template-columns: repeat(4, 1fr);
    }
}

.preview-3846 {
    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 */
.feature-27b2 {
    padding: var(--section-padding);
}

.layout-huge-3fe8 {
    margin: 2rem 0;
}

.menu-a6a1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.sort-6834 {
    overflow-x: auto;
    margin: 2rem 0;
}

.search-dim-9c78 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.shadow-9006 {
    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;
}

.main-selected-7c7f {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.solid_5cdf {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .solid_5cdf {
        grid-template-columns: repeat(3, 1fr);
    }
}

.notification_88bc {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.notification_88bc .accordion-white-5b01 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.notification_88bc .widget-fixed-e609 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.orange-1449 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.wrapper_52e2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.full-c009 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .full-c009 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer_e9d4 {
    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;
}

.footer_e9d4:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.section_active_0837 {
    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);
}

.filter_lower_b6ac {
    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;
}

.warm-f1e9 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.primary_b2dc {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.label_cool_66fa {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.avatar_purple_3b26 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.label-hovered-1213 {
    color: var(--text-white);
    font-weight: 600;
}

.thumbnail_silver_f3a6 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.accordion-f531 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-f531 .overlay-wide-5b97 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.dark_4a03 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .dark_4a03 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.light_cf67 {
    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);
}

.light_cf67:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.light_cf67 .new_b200 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.light_cf67 .popup-0e8d {
    color: var(--text-gray);
    font-size: 1rem;
}

.main_dark_49fb {
    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);
}

.highlight_mini_584c {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.highlight_mini_584c strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.avatar_soft_3b12 {
    margin: 2rem 0;
}

.old-0960 {
    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);
}

.old-0960:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.input_fluid_4660 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.iron_6260 {
    flex: 1;
}

.outline_easy_926a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.fluid_ccca {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.wood_5afd {
    margin: 2rem 0;
}

.under-f96d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.under-f96d .widget-fixed-e609 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.under-f96d .primary_96a6 {
    color: var(--text-gray);
    margin: 0;
}

.panel_fast_b61c {
    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);
}

.panel_fast_b61c .title-yellow-5018 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.orange-1449 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.breadcrumb-top-cfdd {
    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;
}

.stale-2784 {
    flex: 1;
}

.top-8d5a {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.element_559b {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.short_8f2d {
    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;
}

.notice-old-a037 {
    flex: 1;
}

.secondary-98da {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.popup-silver-cdcf {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.layout_liquid_8585 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.next_52bb {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.icon_f426 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.icon_f426 .overlay-wide-5b97 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.thumbnail_clean_2aa8 {
    margin-top: 2rem;
}

.thumbnail_clean_2aa8 .description_9a28 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.primary-fe95 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.breadcrumb-green-984f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .breadcrumb-green-984f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.breadcrumb-green-984f .footer_af99 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.background_silver_c15d {
    margin: 2rem 0;
}

.steel_59d4 {
    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 */
.detail_yellow_23cb {
    padding: var(--section-padding);
}

.media_8aad {
    margin-top: 1rem;
}

.message_66b5 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.message_66b5 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.message_66b5 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.carousel-pressed-003c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pro_aee1 {
    margin: 2rem 0;
}

.shade-clean-2b00 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.hovered_189a {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.solid-b47c {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.advanced_b22d {
    margin: 2rem 0;
}

.preview-clean-5a10 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.preview-clean-5a10 .wood_d4d2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.cold-9ae7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .cold-9ae7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.highlight-out-3b98 {
    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);
}

.fast-3b2b {
    color: var(--text-white);
    font-weight: 600;
}

.silver_5cfb {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.logo-light-f5a7 {
    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);
}

.logo-light-f5a7 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.pagination_d4e5 {
    padding: var(--section-padding);
}

.breadcrumb-8db2 {
    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;
}

.breadcrumb-8db2:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.label-red-588c {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.label-red-588c .slider_af90 {
    font-size: 2rem;
    flex-shrink: 0;
}

.label-red-588c .menu_29e2 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.search_solid_8e8a {
    flex: 1;
}

.menu_c4b9 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.shade_8984 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shade_8984 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.shade_8984 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.blue-0afe {
    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);
}

.blue-0afe p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.blue-0afe strong {
    color: var(--warning-color);
}

/* Slots Section */
.wrapper_7613 {
    padding: var(--section-padding);
}

.modal_8048 {
    margin: 2rem 0;
}

/* Table Games Section */
.column-4348 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.info_clean_1978 {
    margin: 2rem 0;
}

.basic_6b2e {
    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);
}

.basic_6b2e:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.basic_6b2e .article_lower_9039 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.basic_6b2e .shade_a0c1 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.east-d04d {
    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);
}

.east-d04d .title-yellow-5018 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.gallery_d068 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.brown-c36e {
    margin: 2rem 0;
}

.active-9eb3 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.logo_9d80 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.heading-steel-2640 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.progress_48bd {
    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);
}

.progress_48bd:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.progress_48bd.fn-active-223c {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.frame_slow_d720 {
    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);
}

.wrapper-tiny-17bf {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.wrapper-tiny-17bf strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.hidden-hard-6f0d {
    padding: var(--section-padding);
}

.link_east_bf31 {
    margin: 2rem 0;
}

.thumbnail-1134 {
    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);
}

.thumbnail-1134:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .thumbnail-1134 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.row-2189 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.soft-0dbc {
    flex: 1;
}

.layout_544b {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.white-684d {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.hero-right-1e14 {
    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;
}

.heading-middle-344e {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.plasma-7f31 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.disabled_e13c {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.under-9814 {
    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;
}

.under-9814:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.feature-8dcc {
    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);
}

.alert-44f8 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.alert-44f8 strong {
    color: var(--accent-color);
}

/* New Games Section */
.bottom_ef72 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tall-05c7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .tall-05c7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tall-05c7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.current_37cb {
    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;
}

.current_37cb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.steel_e248 {
    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;
}

.focus-2cfb {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.detail-bottom-e319 {
    font-size: 2rem;
}

.footer_7ace {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.hovered_4483 {
    flex: 1;
}

.up-5e3d {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.red_1cb1 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.block_510b {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.paper-8c92 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.progress-83f7 {
    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;
}

.article_275b {
    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;
}

.article_275b:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.popup-89c9 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.text_red_48a7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.description_e8b9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .description_e8b9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dynamic_e8a9 {
    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);
}

.detail_lower_86b9 {
    color: var(--text-white);
    font-weight: 600;
}

.form_1c6c {
    color: var(--accent-color);
    font-weight: 600;
}

.image_fa45 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.image_fa45 strong {
    color: var(--accent-color);
}

/* Security Section */
.paragraph_east_6b3b {
    padding: var(--section-padding);
}

/* Benefits Section */
.button_action_6f5b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.border_17e8 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.soft_61d5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.box-3679 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.tiny-4275 {
    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) {
    .tiny-4275 {
        flex-direction: column;
        gap: 1rem;
    }
}

.tiny-4275:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.tiny-4275 .short_8f2d {
    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;
}

.tiny-4275 .notice-old-a037 {
    flex: 1;
}

.tiny-4275 .secondary-98da {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.tiny-4275 .popup-silver-cdcf {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.badge_bd80 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.badge_bd80 .media-6483 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.badge_bd80 .center_a336 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.badge_bd80 .center_a336 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.badge_bd80 .center_a336 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.narrow-befa {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.nav_silver_b7e8 {
    padding: var(--section-padding);
}

.stale-0f44 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .stale-0f44 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.input_abc7 {
    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);
}

.input_abc7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.input_abc7 .hot-4db8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.input_abc7 .background_north_faee {
    flex: 1;
}

.input_abc7 .paragraph_f652 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.input_abc7 .logo_d8ba {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.logo-cool-4d43 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.logo-cool-4d43 .frame-inner-e642 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.logo-cool-4d43 .hidden_under_bdad {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.logo-cool-4d43 .hidden_under_bdad 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);
}

.logo-cool-4d43 .hidden_under_bdad li:last-child {
    border-bottom: none;
}

.logo-cool-4d43 .hidden_under_bdad 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;
}

.logo-cool-4d43 .hidden_under_bdad li strong {
    color: var(--text-white);
}

.stale_4a58 {
    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);
}

.stale_4a58 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.stale_4a58 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.red_95f0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.photo-hard-9d45 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .photo-hard-9d45 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.input_35dd {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.input_35dd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.status-steel-49c0 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary_1a92 {
    font-size: 2rem;
}

.active-64ea {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.layout-upper-d71b {
    flex: 1;
}

.fixed_05d8 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fixed_05d8 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.fixed_05d8 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.logo-3f7b {
    margin-top: 3rem;
}

.huge-cd3f {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.fixed-894d {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.green-9e28 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.green-9e28 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.green-9e28 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.green-9e28 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.shadow_24e0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.purple-0f9d {
    margin: 2rem 0;
}

.gallery-yellow-f968 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.gallery-yellow-f968 .wood_d4d2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.feature-d9a2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .feature-d9a2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.sort_next_01d6 {
    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);
}

.sort_next_01d6:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.logo-glass-d047 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.table-narrow-14ae {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.element_dark_e77b {
    padding: var(--section-padding);
}

.wide-4a7f {
    margin: 2rem 0;
}

.liquid-165b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .liquid-165b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .liquid-165b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.chip_selected_1f53 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.chip_selected_1f53:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.nav_slow_064d {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.basic-5f05 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.layout-tiny-9ff2 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.layout-tiny-9ff2.gradient-west-0414 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.tiny-2c56 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.advanced_018e {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.image_yellow_cbc7 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.background_light_0305 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.form_8232 {
    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);
}

.form_8232 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.form_8232 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.picture-182b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.logo-2f38 {
    margin: 2rem 0;
}

.button-active-e2e6 {
    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) {
    .button-active-e2e6 {
        flex-direction: column;
        gap: 1rem;
    }
}

.button-active-e2e6:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.button-active-e2e6::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);
}

.sidebar-iron-6c68 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.banner_d581 {
    flex: 1;
}

.avatar-59b7 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.copper-8ddb {
    list-style: none;
    padding: 0;
    margin: 0;
}

.copper-8ddb li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.article-outer-b4e0 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.column_paper_9842 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.white_c1ed {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .white_c1ed {
        grid-template-columns: repeat(3, 1fr);
    }
}

.surface-east-a8c9 {
    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);
}

.search_new_f8cb {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.backdrop-stale-b72d {
    flex: 1;
}

.wood_e0de {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.hidden_large_dfb2 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.form_6686 {
    margin-top: 2rem;
    text-align: center;
}

.medium_445c {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.medium_445c strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.secondary_black_80c1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .secondary_black_80c1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.link-easy-04a1 {
    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);
}

.link-easy-04a1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.link-easy-04a1 .info_a084 {
    font-size: 2rem;
    flex-shrink: 0;
}

.link-easy-04a1 .filter-action-2610 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.link-easy-04a1 .nav-f633 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.link-easy-04a1 .status_1f90 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.right_72ae {
    padding: var(--section-padding);
}

.shadow-paper-eafe .fixed_a048 {
    flex: 1;
}

/* Promo Calendar Section */
.copper-0f0d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.avatar_white_9e6a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .avatar_white_9e6a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.container-1451 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.light-19a8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.mask-978f {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero_8f39 {
    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);
}

.border_c9c5 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.image_iron_b597 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.slow_e730 {
    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);
}

.slow_e730 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.slow_e730 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.glass_9f82 {
    padding: var(--section-padding);
}

.gallery_c5c9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .gallery_c5c9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mini-ebef {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.simple-aa97 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.focused-617a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.focused-617a li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.pro_fd72 {
    margin-top: 3rem;
}

.pro_fd72 .huge-cd3f {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.pro_fd72 .fixed-894d {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.pro_fd72 .green-9e28 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.pro_fd72 .green-9e28 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.pro_fd72 .green-9e28 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.pro_fd72 .green-9e28 li strong {
    color: var(--warning-color);
}

.search-first-689d {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.search-first-689d strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.panel-simple-ba6a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.secondary-6a83 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .secondary-6a83 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.background-active-4b0a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.background-active-4b0a .wood_d4d2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.pagination-current-0b7d {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.west_3dcb {
    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);
}

.west_3dcb:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.focus_776d {
    font-size: 2rem;
    flex-shrink: 0;
}

.shadow-d758 {
    flex: 1;
}

.plasma-cf8e {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.hard-3b16 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.mask_4dbe {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.border_north_bc64 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.content-0d8d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .content-0d8d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.layout_south_4d98 {
    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);
}

.layout_south_4d98:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.badge_hovered_4c44 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.link-0c04 {
    color: var(--text-gray);
    font-size: 1rem;
}

.section_narrow_e9e8 {
    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);
}

.warm_6de7 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.warm_6de7 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.focus-bde9 { 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; }
.container_wood_4f60, .widget_30ce { max-width:100%; height:auto; }

.box_4392, .last-e2d5, .outline-3906 { white-space:normal; }

.pagination-05b6,
.overlay-1bdd,
.down_9b6d,
.secondary_black_80c1,
.wood_5afd,
.west_6694 {
  flex-wrap:wrap;
}

[class*="grid"],
.content-0d8d,
.liquid-165b,
.title_light_a413 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.easy_5e19 img,
.overlay-1bdd img,
.outline_c406 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.outline_9c7a, .plasma-002f,
.upper-d5a9, .pattern-orange-3074 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.lower_82fb { width:100%; overflow-x:auto; }
.lower_82fb table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.notice-simple-f5c3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .notice-simple-f5c3 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.main-184d {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.wrapper-soft-7fdf,
.filter_top_3e83,
.search_medium_8d95,
.current-f193,
.list-glass-9515,
.content-0d8d,
.liquid-165b,
.title_light_a413,
.sort-lower-075e,
.link_east_bf31,
.notice-simple-f5c3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .wrapper-soft-7fdf,
  .filter_top_3e83,
  .search_medium_8d95,
  .current-f193,
  .list-glass-9515,
  .content-0d8d,
  .liquid-165b,
  .title_light_a413,
  .sort-lower-075e,
  .link_east_bf31,
  .notice-simple-f5c3 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.tertiary-dirty-a708,
.list-704c,
.layout_south_4d98,
.silver-ffb7,
.chip_selected_1f53,
.frame_complex_0ab9,
.thumbnail-1134,
.main-184d {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.medium-af34,
.texture-3727,
.module_under_5573 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.medium-af34 > *,
.texture-3727 > *,
.module_under_5573 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: cd79 */
.phantom-card-x6 {
  padding: 0.5rem;
  font-size: 14px;
  line-height: 1.1;
}
