/* {$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;
}

.north_e206 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.fluid_2a6e {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .fluid_2a6e {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .fluid_2a6e {
        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 */
.brown_7340 {
    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);
}

.avatar_smooth_6805 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .avatar_smooth_6805 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .badge_focused_6d0c {
        grid-column: 1;
    }
    
    .sort-full-cfef {
        grid-column: 2;
    }
    
    .advanced_f476 {
        grid-column: 3;
    }
}

.badge_focused_6d0c img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.badge_focused_6d0c:hover img {
    transform: scale(1.05);
}

/* Navigation */
.yellow_223c {
    display: none;
}

@media (min-width: 1024px) {
    .yellow_223c {
        display: block;
    }
}

/* Grouped Navigation */
.soft-a8b6 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.gallery_c6a1 {
    position: relative;
}

.content_0c6b {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.gallery_c6a1 .wood_0fa8 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.wood_0fa8 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.paragraph_a06a {
    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;
}

.paragraph_a06a:hover,
.paragraph_a06a.fn-active-d066 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.caption_c2d7 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .caption_c2d7 {
        display: flex;
    }
}

/* Mobile Register Button */
.sort-full-cfef {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .sort-full-cfef {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.accent-936d {
    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;
}

.accent-936d::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 */
.advanced_f476 {
    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) {
    .advanced_f476 {
        display: none;
    }
}

.advanced_f476 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.advanced_f476.fn-active-d066 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.advanced_f476.fn-active-d066 span:nth-child(2) {
    opacity: 0;
}

.advanced_f476.fn-active-d066 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.large-6d41 {
    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;
}

.large-6d41.fn-active-d066 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.module_hard_6493 {
    overflow: hidden;
}

.wrapper-adf4 {
    list-style: none;
    padding: 0.75rem 0;
}

.block_7360 {
    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;
}

.block_7360:hover,
.block_7360.fn-active-d066 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.block_7360.white_372c {
    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;
}

.block_7360.white_372c::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 */
.picture_mini_8924 {
    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;
}

.info_9023 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.info_9023:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.last-cd46 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.last-cd46:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.banner-e4f0 {
    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;
}

.banner-e4f0:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.bottom_f10a {
    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;
}

.filter-c779 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.filter-c779:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.input-ff1c {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.input-ff1c:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.focus_be3f {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.focus_be3f: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);
}

.popup-be03 {
    font-size: 1em;
    font-weight: 700;
}

.logo-pressed-f7cc {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.input_fixed_9a61 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.input_fixed_9a61::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;
}

.green_2b9a {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .green_2b9a {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.heading_93ae {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.section-a5f4 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.lite-e7d7 {
    margin-bottom: 2rem;
}

.carousel_be33 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .carousel_be33 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wrapper-medium-fe30 {
    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);
}

.steel_39cb {
    font-size: 1.5rem;
}

.background-e6f2 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.feature_cefc {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bronze_8ac3 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.bronze_8ac3:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.mask-large-bf99 {
    text-align: center;
    margin-bottom: 3rem;
}

.gradient_fixed_3860 {
    margin-bottom: 1rem;
}

.form-down-27c7 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.tag-00e9 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .tag-00e9 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .tag-00e9.container-b335 {
        direction: rtl;
    }
    
    .tag-00e9.container-b335 > * {
        direction: ltr;
    }
}

.black-c903 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.black-c903:first-child {
    margin-top: 0;
}

.modal-6a50 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.north_c921 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.north_c921:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.component-18b6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .component-18b6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.detail-in-77e6 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.banner-91a1 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.medium_837d {
    list-style: none;
}

.medium_837d li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.medium_837d li:last-child {
    border-bottom: none;
}

/* Games Features */
.active_3814 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.picture_in_b74b {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.gradient_eeab {
    font-size: 2rem;
    flex-shrink: 0;
}

.header-2d15 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.icon-77be {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.mini_7c2d {
    margin: 2rem 0;
}

.menu-top-62be {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.lower-1e55 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.easy_6b54 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.banner_in_0def {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.status_7dd8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .status_7dd8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.liquid-7c8a {
    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);
}

.liquid-7c8a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.thumbnail_right_4cd4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.heading_443b {
    font-size: 1.5rem;
}

.pagination_8554 {
    color: var(--accent-color);
    margin: 0;
}

.grid_8c4c {
    list-style: none;
}

.grid_8c4c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.grid_8c4c li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.action-9954 {
    margin: 2rem 0;
}

.pagination_copper_0eff {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.component_huge_d0c4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .component_huge_d0c4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.middle_d199 {
    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);
}

.link-gas-317e {
    font-size: 1.25rem;
}

.chip-fluid-b222 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.container-cfbc,
.middle-3f98 {
    text-align: center;
    margin: 2rem 0;
}

.modal-orange-448b,
.article-d8fc {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.filter_motion_2cf7 {
    margin: 2rem 0;
    text-align: center;
}

.tall_84a2 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tall_84a2::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;
}

.focus_iron_ca3f {
    position: relative;
    z-index: 1;
}

.carousel_north_131c {
    margin-bottom: 1rem;
}

.solid_7fee {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.slider_13c0 {
    margin-bottom: 3rem;
}

.card_light_38dc {
    margin-top: 3rem;
}

.tag-261a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .tag-261a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tag-261a .wrapper-medium-fe30 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.chip-light-b4fb {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.summary-narrow-c536 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.picture-39cd {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.liquid-889a {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .liquid-889a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .liquid-889a {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.dim-0863 {
    margin-bottom: 1rem;
}

.center-6f16 img {
    margin-bottom: 1rem;
}

.backdrop-silver-e002 {
    color: var(--text-gray);
    line-height: 1.6;
}

.background_a5a3 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.pagination_a0e3 {
    list-style: none;
}

.pagination_a0e3 li {
    margin-bottom: 0.5rem;
}

.pagination_a0e3 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.pagination_a0e3 a:hover {
    color: var(--accent-color);
}

.tooltip_dirty_d99e {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.south-febf {
    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);
}

.south-febf:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.hover-7803 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.hover-7803 p {
    margin-bottom: 0.25rem;
}

.liquid_beff {
    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) {
    .liquid_beff {
        flex-direction: row;
    }
}

.article-yellow-2f41 {
    text-align: center;
}

@media (min-width: 768px) {
    .article-yellow-2f41 {
        text-align: left;
    }
}

.article-yellow-2f41 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.gallery-a79f {
    font-size: 0.75rem !important;
}

.old_17a5 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.lower_bbf0 {
    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);
    }
}

.label-ae31 {
    animation: fadeInUp 0.6s ease-out;
}

.sort_c95e {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.prev-2a55 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .prev-2a55 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.element-4869 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .element-4869 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.iron-d375 {
    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);
}

.iron-d375 .gradient_eeab {
    font-size: 1.25rem;
}

.iron-d375 .component_115a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.center_175a {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .center_175a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hovered-be30 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    transition: var(--transition-normal);
}

.hovered-be30:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.paragraph_large_3830 {
    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);
}

.heading-8984 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.carousel-yellow-d085 {
    color: var(--text-gray);
    line-height: 1.6;
}

.table_yellow_a42b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.nav_dirty_a880 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.nav_dirty_a880 .header-2d15 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.nav_dirty_a880 .icon-77be {
    color: var(--text-gray);
    line-height: 1.6;
}

.widget-3bab {
    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);
}

.layout_3422 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.layout_3422 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.layout_3422 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.west-dcd4 {
    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);
}

.right_5ef4 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.banner_f8d3 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.banner_f8d3 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.banner_f8d3 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);
}

.banner_f8d3 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.banner_f8d3 input::placeholder {
    color: var(--text-muted);
}

.hard_07f4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.banner-left-61d9 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.banner-left-61d9 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.description-mini-2e2f {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.description-mini-2e2f:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.component_huge_d0c4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .component_huge_d0c4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.middle_d199 {
    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);
}

.middle_d199 .link-gas-317e {
    font-size: 1.25rem;
}

.middle_d199 .chip-fluid-b222 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.outer-4926 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.small-72d1 {
    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);
}

.small-72d1 .gradient_eeab {
    font-size: 2rem;
    flex-shrink: 0;
}

.small-72d1 .header-2d15 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.small-72d1 .icon-77be {
    color: var(--text-gray);
    line-height: 1.6;
}

.accent-70e6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.item-0d60 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.item-0d60 .surface-7ac4 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.item-0d60 .dark_fac5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.list_rough_b2b3 {
    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);
}

.light_2825 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .light_2825 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gold-939d {
    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);
}

.gold-939d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.button_in_d881 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.section-thick-208e {
    flex: 1;
}

.next_04cf {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.caption-bfdb {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature_4585 {
    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);
}

.feature_4585:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.thumbnail_tiny_ec71 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .thumbnail_tiny_ec71 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fast-6aed {
    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);
}

.fast-6aed:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.shade-0361 {
    font-size: 2rem;
    flex-shrink: 0;
}

.content_active_a5c4 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.left_9125 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.component-bright-342c {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.filter_975a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.right_d147 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.description-580d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.description-580d .tabs-af54 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.description-580d .new-d515 {
    color: var(--text-gray);
    line-height: 1.6;
}

.secondary-bronze-d98e {
    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);
}

.fixed-b34c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.slow-a754 {
    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);
}

.slow-a754 .gradient_eeab {
    font-size: 2rem;
    flex-shrink: 0;
}

.slow-a754 .header-2d15 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.slow-a754 .icon-77be {
    color: var(--text-gray);
    line-height: 1.6;
}

.thumbnail-0095 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .thumbnail-0095 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dark_771b {
    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);
}

.dark_771b:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.chip_0d30 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .chip_0d30 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.copper-faf2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.copper-faf2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.fresh_a721 {
    font-size: 2rem;
    flex-shrink: 0;
}

.alert-3e3c {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.lower-1e55 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.container-silver-d995 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.advanced_60d3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.notice_out_1688 {
    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);
}

.notice_out_1688:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.paper-486e {
    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);
}

.tertiary_995c {
    flex: 1;
}

.tertiary_5eb7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.surface-middle-74da {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.label-west-abba {
    color: var(--text-gray);
    line-height: 1.6;
}

.north_b971 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hard-fcbe {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hard-fcbe .surface-7ac4 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hard-fcbe .dark_fac5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.middle-3f98 {
    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);
}

.active-b663 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .active-b663 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.slider-inner-40f1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .slider-inner-40f1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card-red-5b95 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.card-red-5b95:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.detail-c1bf {
    font-size: 2rem;
    flex-shrink: 0;
}

.tertiary-2807 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.focused_a001 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.tabs_east_eb21 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.box_last_109d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wood-2129 {
    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-9bb1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.footer_inner_bbaf {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.module-2004 {
    color: var(--text-gray);
    line-height: 1.6;
}

.fixed-b34c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.slow-a754 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.slow-a754 .header-2d15 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.slow-a754 .icon-77be {
    color: var(--text-gray);
    line-height: 1.6;
}

.mini_1395 {
    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);
}

.tertiary-blue-7241 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .tertiary-blue-7241 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tertiary-blue-7241 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.current-8cbe {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.current-8cbe:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.layout_0e6a {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.slow_56b1 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.lower-f6e8 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.container-4d49 {
    padding: 1.5rem;
}

.tertiary-outer-8974 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.form_53a6 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.form_53a6 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;
}

.form_53a6 li:last-child {
    border-bottom: none;
}

.form_53a6 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.form-a81f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .form-a81f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.column_4381 {
    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);
}

.column_4381:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.shadow_3bfb {
    font-size: 2rem;
    flex-shrink: 0;
}

.overlay_24ae {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.caption-3851 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.block_2364 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.notice-dim-d9d1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.info_motion_742e {
    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);
}

.orange-fe6e {
    font-size: 2rem;
    flex-shrink: 0;
}

.gallery-c269 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.over_4342 {
    color: var(--text-gray);
    line-height: 1.6;
}

.chip-complex-0de3 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.gradient-soft-ee7d {
    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);
}

.lite-834f {
    text-align: center;
}

.iron_8be7 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.modal_active_0ba1 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.overlay_gold_8737 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.link_hot_50cb {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.link_hot_50cb .header-2d15 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.link_hot_50cb .icon-77be {
    color: var(--text-gray);
    line-height: 1.6;
}

.shade_tiny_4299 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .shade_tiny_4299 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .shade_tiny_4299 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.up_cf1f {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.up_cf1f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.chip-5e7e {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.shade-bright-fa87 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.header-2d15 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.status_7f7a {
    padding: 1.5rem;
}

.icon-77be {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pro-ae54 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pro-ae54 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;
}

.pro-ae54 li:last-child {
    border-bottom: none;
}

.pro-ae54 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.new-12ad {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.carousel-6015 {
    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);
}

.carousel-6015:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.new_77e8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.next-19d6 {
    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);
}

.paragraph_large_3830 {
    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;
}

.heading-8984 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.carousel-yellow-d085 {
    color: var(--text-gray);
    line-height: 1.6;
}

.status-d504 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.complex-712a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.hard_773a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.green_18dd {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.current-6b0f {
    display: flex;
    gap: 1rem;
}

.current-6b0f .secondary-37e6 {
    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;
}

.brown-faa4 {
    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);
}

.content-brown-f01b {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.thick-1cd3 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.thick-1cd3 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;
}

.thick-1cd3 li:last-child {
    border-bottom: none;
}

.thick-1cd3 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.gold-0c7c {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .gold-0c7c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gold-0c7c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.lower_c1e8 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.lower_c1e8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.label_9f21 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.title_e2c6 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.tabs-af54 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.texture-6472 {
    font-size: 1rem;
}

.mask_a7d1 {
    padding: 1.5rem;
}

.new-d515 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.photo_be7f {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.photo_be7f .lite-834f {
    text-align: center;
}

.photo_be7f .modal_active_0ba1 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.photo_be7f .thumbnail-light-b7f4 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.caption-gold-aee4 {
    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);
}

.caption-gold-aee4:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.large_3744 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .large_3744 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card_5146 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.card_5146:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.static_5ffa {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.badge-53ef {
    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_c69a {
    font-size: 2rem;
    flex-shrink: 0;
}

.table-white-1d1f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.button-754a {
    color: var(--text-gray);
    line-height: 1.6;
}

.tag_cool_197d {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.pagination_slow_2932 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.message-wide-2f56 {
    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);
}

.notification_6788 {
    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;
}

.notification_6788.paragraph-4481 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.notification_6788.smooth-ee43 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.notification_6788.gallery_5ed7 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.notification_6788.bronze-a0fd {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.notification_6788.card_iron_8094 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.list_bronze_47d1 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.column_5f80 {
    color: var(--text-gray);
    line-height: 1.6;
}

.dim_916b {
    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);
}

.green_d8ff {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.accent-70e6 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accent-70e6 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;
}

.accent-70e6 li:last-child {
    border-bottom: none;
}

.accent-70e6 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.box_narrow_7c2e {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .box_narrow_7c2e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .box_narrow_7c2e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.disabled-rough-c7bc {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.disabled-rough-c7bc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.disabled-rough-c7bc.down_8f7d {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .disabled-rough-c7bc.down_8f7d {
        grid-column: span 3;
    }
}

.hot_3358 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.disabled-rough-c7bc.down_8f7d .hot_3358 {
    background: rgba(6, 182, 212, 0.1);
}

.button-03e3 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.frame_wide_456d {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.disabled-rough-c7bc.down_8f7d .frame_wide_456d {
    color: var(--info-color);
}

.video_eced {
    padding: 1.5rem;
    text-align: center;
}

.tooltip-stale-6121 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.disabled-rough-c7bc.down_8f7d .tooltip-stale-6121 {
    color: var(--info-color);
}

.heading_stale_875e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.gas_785a {
    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 */
.fresh_2830 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .fresh_2830 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.component_8e90 {
    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);
}

.component_8e90:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.widget-east-da8b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.small-72d1 {
    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);
}

.link-gas-317e {
    font-size: 2rem;
    flex-shrink: 0;
}

.accent-8be9 {
    flex: 1;
}

.pagination_copper_0eff {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.short-8431 {
    color: var(--text-gray);
    line-height: 1.6;
}

.component_selected_bc03 {
    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);
}

.mask_eaf7 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.status_c8c0 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.lower_bbf0 {
    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);
}

.dirty_e0c3 {
  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);
}

.dirty_e0c3 .lite-834f {
    text-align: center;
}

.dirty_e0c3 .iron_8be7 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.dirty_e0c3 .modal_active_0ba1 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.fresh_d8de {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tag-9e54 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gallery-inner-88ee {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.last-4b4d {
    color: var(--text-gray);
    line-height: 1.6;
}

.button_17b1 {
    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);
}

.media-70dd {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.easy-8963 {
    color: var(--text-gray);
    line-height: 1.6;
}

.highlight-a0aa {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .highlight-a0aa {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .highlight-a0aa {
        grid-template-columns: repeat(3, 1fr);
    }
}

.preview-ce13 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.preview-ce13:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.dynamic_a01c {
    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);
}

.thumbnail-large-17e0 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.caption_simple_63b9 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.modal_6204 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal_6204.purple-cc8b {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.modal_6204.alert-130f {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.modal_6204.static_0ca0 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.glass-c0e3 {
    padding: 1.5rem;
    text-align: center;
}

.gallery-98ea {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.full-30d8 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.full-30d8 .pagination_b977 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.simple_5458 {
    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);
}

.simple_5458:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.tag-e65b {
  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);
}

.in_ac42 {
    text-align: center;
}

.in_ac42 .iron_8be7 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.in_ac42 .modal_active_0ba1 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.tabs-yellow-6195 { text-align: center; }
.component-dynamic-0667 { text-align: left; }
.notice-529a { text-align: right; }

.card_prev_5f11 { margin-bottom: 0; }
.blue_03eb { margin-bottom: 0.5rem; }
.icon_580e { margin-bottom: 1rem; }
.block-over-0b63 { margin-bottom: 1.5rem; }
.header-first-95c9 { margin-bottom: 2rem; }

.bright-4c2e { margin-top: 0; }
.info-black-1261 { margin-top: 0.5rem; }
.block_stone_5959 { margin-top: 1rem; }
.hero_complex_436a { margin-top: 1.5rem; }
.section-44e0 { margin-top: 2rem; }

.fn-hidden-d066 { display: none; }
.fn-visible-d066 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .input_fixed_9a61 {
        padding: 6rem 0 3rem;
    }
    
    .green_2b9a {
        text-align: center;
    }
    
    .tag-00e9 {
        text-align: center;
    }
    
    .carousel_be33 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .brown_7340,
    .large-6d41,
    .tall_84a2,
    .picture-39cd {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .input_fixed_9a61 {
        background: none;
    }
}

/* Providers Section */
.row-37b6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.alert-pink-239e {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .alert-pink-239e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .alert-pink-239e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.brown-9c66 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.brown-9c66:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.card_fast_16e5 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-f7e7 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.full-f97b {
    list-style: none;
    padding: 0;
}

.full-f97b li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.full-f97b li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.dirty-ffa3 {
    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);
}

.dirty-ffa3 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.picture_down_6f43 {
    padding: var(--section-padding);
}

.dynamic_d9b3 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dynamic_d9b3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.summary_hovered_67d0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.summary_hovered_67d0:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.photo-54e0 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.focused_2e34 {
    display: flex;
    flex-direction: column;
}

.dirty_b8d1 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.input_3ac7 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.button-left-f99c {
    color: var(--accent-color);
}

.summary-75b6 {
    font-size: 1.25rem;
}

.outline_prev_a8f5 {
    margin-bottom: 1rem;
}

.outline_prev_a8f5 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.section_action_7e3b {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.detail_b32b {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.lite-834f {
    text-align: center;
}

.iron_8be7 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.modal_active_0ba1 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.link_5cb1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.footer_16e5 {
    margin: 2rem 0;
}

.primary-prev-0580 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.primary-prev-0580 .gradient_eeab {
    font-size: 2rem;
    flex-shrink: 0;
}

.card_3f10 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.current-f4e3 {
    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;
}

.current-f4e3:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.dynamic-d0c8 {
    font-size: 2rem;
}

.up-a0b3 {
    display: flex;
    flex-direction: column;
}

.primary-6ce7 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.gas-899e {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.list-1d7b {
    padding: var(--section-padding);
}

.wood-ce92 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .wood-ce92 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .wood-ce92 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.shade_5784 {
    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);
}

.shade_5784:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.shade_5784 .iron_8be7 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.shade_5784 .modal_active_0ba1 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.shade_5784 .aside-9e3a {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.input-hard-018e {
    margin-top: 4rem;
}

.feature_glass_b9b4 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.sort_glass_8a0d {
    overflow-x: auto;
}

.upper-8b35 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.upper-8b35 thead {
    background: var(--accent-color);
}

.upper-8b35 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.upper-8b35 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.upper-8b35 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.upper-8b35 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.dirty-d1fa {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.panel-a290 {
    max-width: 900px;
    margin: 0 auto;
}

.basic_051d {
    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);
}

.basic_051d:hover {
    border-color: var(--accent-color);
}

.table-0903 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.table-0903 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.layout_f1f7 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.basic_051d.fn-active-d066 .layout_f1f7 {
    transform: rotate(45deg);
}

.feature_b7a8 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.basic_051d.fn-active-d066 .feature_b7a8 {
    max-height: 1000px;
}

.feature_b7a8 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.notification-62fd {
    padding: var(--section-padding);
}

.layout_3422 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.footer-56fc {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.aside_current_8290 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .aside_current_8290 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hard_c4af {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.chip-8a47 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.breadcrumb_75fb {
    font-size: 2rem;
}

.nav-df60 {
    color: var(--text-white);
    margin: 0;
}

.clean-a4eb {
    list-style: none;
    padding: 0;
}

.clean-a4eb li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.clean-a4eb li:last-child {
    border-bottom: none;
}

.top-4c1b {
    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);
}

.top-4c1b p {
    color: var(--success-color);
    margin: 0;
}

.active_c6a5 {
    margin-top: 3rem;
}

.content-brown-f01b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.disabled-cold-131b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .disabled-cold-131b {
        grid-template-columns: repeat(2, 1fr);
    }
}

.footer_94e6 {
    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);
}

.shadow-129b {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.footer_94e6 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.avatar-blue-125b {
    padding: var(--section-padding);
}

.link-75d6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .link-75d6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.next_bdb0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.next_bdb0:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.iron-9a6a {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mask_4f3b {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.white-cc0c {
    flex: 1;
}

.gallery_1d47 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.sidebar_cd18 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.fast_b944 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hovered-40b9 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hovered-40b9:last-child {
    border-bottom: none;
}

/* Comparison Section */
.static-17a3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.red_ff1b {
    padding: var(--section-padding);
}

.steel_dcc5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.video_0cb3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .video_0cb3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.nav_short_3400 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.slider-west-345e, .carousel-narrow-789b, .popup-d403 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.popup-d403 {
    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 */
.easy-d81e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.sort_c9d4 {
    margin: 2rem 0;
}

.box_52d4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tertiary-73ec {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.hovered_bd47 {
    list-style: none;
    padding: 0;
}

.hovered_bd47 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;
}

.hovered_bd47 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.hovered_bd47 li:last-child {
    border-bottom: none;
}

.header-dirty-28e7 {
    text-align: center;
    margin-top: 2rem;
}

.advanced_b43c {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.pattern_cea8 {
    padding: var(--section-padding);
}

.overlay-current-c3e2 {
    margin: 2rem 0;
}

.title-768a {
    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) {
    .title-768a {
        flex-direction: column;
        align-items: flex-start;
    }
}

.title-768a:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.tooltip-9b90 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.aside_3920 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.focused-e7dd {
    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;
}

.message-hard-dfd9 {
    flex: 1;
}

.popup_0f1f {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.panel_purple_1986 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.grid-4d27 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.dim_be97 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .dim_be97 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.pressed-0ad4 {
    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);
}

.pressed-0ad4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.pressed-0ad4 .iron_8be7 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.pressed-0ad4 .modal_active_0ba1 {
    color: var(--text-gray);
    font-size: 1rem;
}

.focus_6bc4 {
    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);
}

.tooltip-8b09 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.tooltip-8b09 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.background_9b52 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .background_9b52 {
        grid-template-columns: 1fr 1fr;
    }
}

.media-52fb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hard-5a4b {
    margin-bottom: 1.5rem;
}

.hard-5a4b label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.hard-5a4b input,
.hard-5a4b 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;
}

.hard-5a4b input:focus,
.hard-5a4b select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.huge-d7ae {
    width: 100%;
    margin-top: 1rem;
}

.gallery_37a0 {
    display: flex;
    align-items: center;
}

.gallery_b136 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.background-small-230f {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.tooltip-fc6e {
    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;
}

.accordion-df8d {
    color: var(--text-gray);
}

.picture-left-862f {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.primary_a1da {
    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);
}

.primary_a1da p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.image_first_31dd {
    margin-top: 3rem;
}

.component_06c3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.input_medium_e97b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.card_7d0e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.description_purple_f0ed {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.description_purple_f0ed:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.input_6f06 {
    padding: var(--section-padding);
}

.image_9601 {
    margin: 2rem 0;
}

.wide_7a80 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.avatar-ce09 {
    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;
}

.avatar-ce09:hover, .avatar-ce09.fn-active-d066 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.backdrop_1d0d {
    display: none;
}

.backdrop_1d0d.fn-active-d066 {
    display: block;
}

.logo-stale-e7cd {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.under_9033 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.caption-96d5 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.caption-96d5 ul {
    list-style: none;
    padding: 0;
}

.caption-96d5 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.caption-96d5 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.module-narrow-55e0 {
    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 */
.menu_pink_70fc {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.media_warm_3b00 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.info_4b45 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.next_11b0 {
    color: var(--accent-color);
    margin: 0;
}

.shade-focused-dc5c {
    display: flex;
    gap: 1.5rem;
}

.hard-9c72 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.rough-fb51 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.photo_0ed4 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.photo_0ed4.photo-7b5e {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.photo_0ed4.mask-30a5 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.photo_0ed4.breadcrumb_basic_7f67 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.link_out_2065 {
    margin-top: 2rem;
}

.layout_8a53 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.content-small-0b9a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .content-small-0b9a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.simple_d050 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.in_00ef {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.mini-2098 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.header-hard-8c1a {
    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 */
.text-stale-a60e {
    padding: var(--section-padding);
}

.heading_static_79cc {
    margin: 2rem 0;
}

.fixed-7d52 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.article_thick_a501 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.menu-current-782b {
    list-style: none;
    padding: 0;
}

.menu-current-782b 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;
}

.menu-current-782b li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.menu-current-782b li:last-child {
    border-bottom: none;
}

.element_paper_a24a {
    margin: 2rem 0;
}

.heading-fc00 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.feature_green_a37e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .feature_green_a37e {
        grid-template-columns: repeat(2, 1fr);
    }
}

.caption-8477 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.caption-new-0a8b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.avatar_2b49 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.content-over-e701 {
    margin-top: 2rem;
}

.next_04cf {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.cool_336f {
    list-style: none;
    padding: 0;
}

.nav-under-2d68 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.nav-under-2d68 a {
    color: var(--accent-color);
    text-decoration: none;
}

.nav-under-2d68 a:hover {
    text-decoration: underline;
}

.hidden_warm_ffff {
    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 */
.nav_4aaf {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.huge_6ec7 {
    margin: 2rem 0;
}

.pattern_top_7d3c {
    margin-bottom: 3rem;
}

.pattern_top_7d3c .tertiary-73ec {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.gradient-05f8 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.list-outer-8e75 {
    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);
}

.list-outer-8e75:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.caption-purple-7920 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .caption-purple-7920 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.notice_6638 {
    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 */
.highlight-in-a7a6 {
    padding: var(--section-padding);
}

.primary_8fbe {
    margin: 2rem 0;
}

.outer-6b7c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.secondary_south_86a2 {
    overflow-x: auto;
    margin: 2rem 0;
}

.container-e18c {
    background: rgba(6, 182, 212, 0.1) !important;
}

.dim_f67d {
    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;
}

.bottom-438b {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.in-1748 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .in-1748 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.summary_189b {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.summary_189b .gradient_eeab {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.summary_189b .header-2d15 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.prev-fec6 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.green_87c6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.avatar_db41 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .avatar_db41 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dynamic-d4a2 {
    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;
}

.dynamic-d4a2:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.list_plasma_cea3 {
    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);
}

.component-b0f8 {
    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;
}

.blue-3711 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.breadcrumb-7d4a {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.iron_ac1b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.hard_4a63 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.title_358e {
    color: var(--text-white);
    font-weight: 600;
}

.status-ac69 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.grid-purple-d33e {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.grid-purple-d33e .secondary-37e6 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.border-50d3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .border-50d3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.section_south_6d20 {
    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);
}

.section_south_6d20:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.section_south_6d20 .iron_8be7 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.section_south_6d20 .modal_active_0ba1 {
    color: var(--text-gray);
    font-size: 1rem;
}

.static_80f5 {
    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);
}

.next-e16d {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.next-e16d strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.box_last_109d {
    margin: 2rem 0;
}

.wood-2129 {
    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);
}

.wood-2129:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.heading-9bb1 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.carousel-14d3 {
    flex: 1;
}

.footer_inner_bbaf {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.module-2004 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.fixed-b34c {
    margin: 2rem 0;
}

.slow-a754 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.slow-a754 .header-2d15 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.slow-a754 .icon-77be {
    color: var(--text-gray);
    margin: 0;
}

.mini_1395 {
    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);
}

.mini_1395 .modal-orange-448b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.prev-fec6 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.paper-486e {
    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;
}

.tertiary_995c {
    flex: 1;
}

.surface-middle-74da {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.label-west-abba {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.paragraph_large_3830 {
    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;
}

.accent_f943 {
    flex: 1;
}

.heading-8984 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.carousel-yellow-d085 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.hard_773a {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.green_18dd {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.current-6b0f {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.current-6b0f .secondary-37e6 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.brown-faa4 {
    margin-top: 2rem;
}

.brown-faa4 .content-brown-f01b {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.selected-8d4e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.gradient-soft-ee7d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .gradient-soft-ee7d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gradient-soft-ee7d .lite-834f {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.overlay_gold_8737 {
    margin: 2rem 0;
}

.link_hot_50cb {
    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 */
.modal_soft_b741 {
    padding: var(--section-padding);
}

.status_7f7a {
    margin-top: 1rem;
}

.pro-ae54 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.pro-ae54 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.pro-ae54 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.progress-brown-0a5e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.box-db6a {
    margin: 2rem 0;
}

.brown-f1d9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.icon_light_37b7 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.outline-tiny-3c9a {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.pagination-4ffe {
    margin: 2rem 0;
}

.article_9038 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.article_9038 .tertiary-73ec {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.module_26b2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .module_26b2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.highlight_upper_e28b {
    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);
}

.solid-066d {
    color: var(--text-white);
    font-weight: 600;
}

.main_fast_a4f1 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.primary-f471 {
    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);
}

.primary-f471 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.hover-current-6253 {
    padding: var(--section-padding);
}

.message-lite-da60 {
    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;
}

.message-lite-da60:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.component-yellow-b076 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.component-yellow-b076 .shadow-129b {
    font-size: 2rem;
    flex-shrink: 0;
}

.component-yellow-b076 .lower-5564 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.accent-386f {
    flex: 1;
}

.alert-hard-08b9 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.focus-b545 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.focus-b545 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.focus-b545 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.panel-silver-27da {
    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);
}

.panel-silver-27da p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.panel-silver-27da strong {
    color: var(--warning-color);
}

/* Slots Section */
.list-6e1e {
    padding: var(--section-padding);
}

.filter_975a {
    margin: 2rem 0;
}

/* Table Games Section */
.slider_e8ce {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.right_d147 {
    margin: 2rem 0;
}

.description-580d {
    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);
}

.description-580d:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.description-580d .tabs-af54 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.description-580d .new-d515 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.secondary-bronze-d98e {
    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);
}

.secondary-bronze-d98e .modal-orange-448b {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.stone-0500 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.layout_a629 {
    margin: 2rem 0;
}

.popup-yellow-bcf7 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tiny-1b04 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.photo-purple-7de1 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.silver-b7ba {
    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);
}

.silver-b7ba:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.silver-b7ba.fn-active-d066 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.mini_9f19 {
    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);
}

.basic-df06 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.basic-df06 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.module_4b8d {
    padding: var(--section-padding);
}

.text-a3e2 {
    margin: 2rem 0;
}

.border_5e12 {
    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);
}

.border_5e12:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .border_5e12 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.alert_75e3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.hot_7029 {
    flex: 1;
}

.button_95eb {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.fresh_7b7b {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.light-f515 {
    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;
}

.thumbnail-57d5 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.notification-fresh-eba7 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.item-3840 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.tabs_e327 {
    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;
}

.tabs_e327:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.hovered_7366 {
    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);
}

.input-7ff4 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.input-7ff4 strong {
    color: var(--accent-color);
}

/* New Games Section */
.heading_dark_e947 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.list_3499 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .list_3499 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .list_3499 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fixed-0da0 {
    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;
}

.fixed-0da0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.last_3df2 {
    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;
}

.complex_a532 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.status_fluid_7952 {
    font-size: 2rem;
}

.input_blue_f88e {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.medium_1304 {
    flex: 1;
}

.carousel_gas_2f8a {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.overlay-c7a8 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.search_huge_c8e9 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.main-pressed-f72d {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.background_plasma_b289 {
    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;
}

.filter-pink-cdaa {
    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;
}

.filter-pink-cdaa:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.module-d2b7 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.red_c758 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.header_orange_4178 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .header_orange_4178 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fixed-6a70 {
    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);
}

.center-54b7 {
    color: var(--text-white);
    font-weight: 600;
}

.red-425a {
    color: var(--accent-color);
    font-weight: 600;
}

.text-c56a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.text-c56a strong {
    color: var(--accent-color);
}

/* Security Section */
.hard_b107 {
    padding: var(--section-padding);
}

/* Benefits Section */
.pro_005a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.detail-prev-91e9 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.search-silver-74f7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pattern-a15b {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.avatar_cold_4536 {
    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) {
    .avatar_cold_4536 {
        flex-direction: column;
        gap: 1rem;
    }
}

.avatar_cold_4536:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.avatar_cold_4536 .paragraph_large_3830 {
    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;
}

.avatar_cold_4536 .accent_f943 {
    flex: 1;
}

.avatar_cold_4536 .heading-8984 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.avatar_cold_4536 .carousel-yellow-d085 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.paragraph_59eb {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.paragraph_59eb .pagination_copper_0eff {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.paragraph_59eb .outer-4926 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.paragraph_59eb .outer-4926 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.paragraph_59eb .outer-4926 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.old-d7e7 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.card_2e8b {
    padding: var(--section-padding);
}

.feature_7135 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .feature_7135 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tooltip_67e4 {
    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);
}

.tooltip_67e4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.tooltip_67e4 .dropdown_545e {
    font-size: 2rem;
    flex-shrink: 0;
}

.tooltip_67e4 .sidebar_dirty_0c74 {
    flex: 1;
}

.tooltip_67e4 .surface-7ac4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tooltip_67e4 .aside-bright-6c83 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.detail-large-6afe {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.detail-large-6afe .message-complex-eff6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.detail-large-6afe .motion_c054 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.detail-large-6afe .motion_c054 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);
}

.detail-large-6afe .motion_c054 li:last-child {
    border-bottom: none;
}

.detail-large-6afe .motion_c054 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;
}

.detail-large-6afe .motion_c054 li strong {
    color: var(--text-white);
}

.blue_de35 {
    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);
}

.blue_de35 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.blue_de35 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.motion_6ccd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.title_951a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .title_951a {
        grid-template-columns: repeat(2, 1fr);
    }
}

.liquid-bda1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.liquid-bda1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.silver_f7f0 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.badge_d1f1 {
    font-size: 2rem;
}

.hidden_a491 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.stone-9580 {
    flex: 1;
}

.breadcrumb-9985 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-9985 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.breadcrumb-9985 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.description-996d {
    margin-top: 3rem;
}

.fixed-7d52 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.article_thick_a501 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.menu-current-782b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-current-782b li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.menu-current-782b li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.menu-current-782b li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.lite-6585 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.backdrop_b216 {
    margin: 2rem 0;
}

.status-paper-c6ef {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.status-paper-c6ef .tertiary-73ec {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.white_73b6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .white_73b6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dynamic_571c {
    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);
}

.dynamic_571c:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.selected-d46a {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.notification-paper-31b8 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.pagination_3a76 {
    padding: var(--section-padding);
}

.huge-7794 {
    margin: 2rem 0;
}

.surface-wood-68d9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .surface-wood-68d9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .surface-wood-68d9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.current_8417 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.current_8417:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.top-eede {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.next-07fb {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.pattern_dirty_16b3 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pattern_dirty_16b3.middle-06c1 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.hover_77f1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.popup_pressed_021e {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.down_9ed0 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.text-dec2 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.light-9431 {
    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);
}

.light-9431 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.light-9431 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.old_f313 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tabs-ba58 {
    margin: 2rem 0;
}

.tall-c30c {
    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) {
    .tall-c30c {
        flex-direction: column;
        gap: 1rem;
    }
}

.tall-c30c:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.tall-c30c::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);
}

.title_4464 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.accent-next-bc64 {
    flex: 1;
}

.north_8e89 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.icon-green-51a0 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.icon-green-51a0 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.secondary_efaa {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.sort_hard_bfab {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.orange-637b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .orange-637b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.paragraph_current_f1fb {
    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);
}

.row_7002 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.bright-baeb {
    flex: 1;
}

.dark-b7ad {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.link-fast-8014 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.hidden_a587 {
    margin-top: 2rem;
    text-align: center;
}

.middle_4f56 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.middle_4f56 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.large_3744 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .large_3744 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card_5146 {
    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);
}

.card_5146:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.card_5146 .shadow_3bfb {
    font-size: 2rem;
    flex-shrink: 0;
}

.card_5146 .overlay_24ae {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.card_5146 .caption-3851 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.card_5146 .block_2364 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.message-selected-b804 {
    padding: var(--section-padding);
}

.badge-53ef .bottom-4998 {
    flex: 1;
}

/* Promo Calendar Section */
.main_c9cd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.summary_silver_723e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .summary_silver_723e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery_prev_e317 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.section_462a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.box_hovered_94fb {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.container-bfdd {
    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);
}

.box_c373 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.avatar_fluid_9b57 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.dirty-0d51 {
    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);
}

.dirty-0d51 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.dirty-0d51 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.backdrop_lite_f0dc {
    padding: var(--section-padding);
}

.narrow-b5c9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .narrow-b5c9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.carousel_7af0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.aside_4a12 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.filter-5b13 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-5b13 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.hidden-0d38 {
    margin-top: 3rem;
}

.hidden-0d38 .fixed-7d52 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.hidden-0d38 .article_thick_a501 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hidden-0d38 .menu-current-782b {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.hidden-0d38 .menu-current-782b li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.hidden-0d38 .menu-current-782b li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.hidden-0d38 .menu-current-782b li strong {
    color: var(--warning-color);
}

.container-tiny-d19c {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.container-tiny-d19c strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.gold-3f38 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.right_504f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .right_504f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.overlay-hard-175b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.overlay-hard-175b .tertiary-73ec {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.texture_c879 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.current_dbcf {
    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);
}

.current_dbcf:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.purple-4c98 {
    font-size: 2rem;
    flex-shrink: 0;
}

.secondary_b338 {
    flex: 1;
}

.hover-solid-0b1a {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.alert_d2f8 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.notice-slow-81d7 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.active-0442 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.mask_plasma_a093 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .mask_plasma_a093 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pressed_197e {
    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);
}

.pressed_197e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.soft_b9f6 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.wrapper-d567 {
    color: var(--text-gray);
    font-size: 1rem;
}

.tooltip-8b09 {
    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);
}

.bronze_271c {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.bronze_271c strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.fluid_2a6e { 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; }
.bronze_8ac3, .north_c921 { max-width:100%; height:auto; }

.picture_mini_8924, .banner-e4f0, .bottom_f10a { white-space:normal; }

.green_2b9a,
.tag-00e9,
.fresh_2830,
.large_3744,
.fixed-b34c,
.highlight-a0aa {
  flex-wrap:wrap;
}

[class*="grid"],
.mask_plasma_a093,
.surface-wood-68d9,
.tag-261a {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.input_fixed_9a61 img,
.tag-00e9 img,
.feature_cefc img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.heading_93ae, .section-a5f4,
.gradient_fixed_3860, .form-down-27c7 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.sort_glass_8a0d { width:100%; overflow-x:auto; }
.sort_glass_8a0d table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.alert-pink-239e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .alert-pink-239e {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.brown-9c66 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.wood-ce92,
.chip-3adb,
.cool_c076,
.banner_4e58,
.dim_be97,
.mask_plasma_a093,
.surface-wood-68d9,
.tag-261a,
.tag-e65b,
.text-a3e2,
.alert-pink-239e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .wood-ce92,
  .chip-3adb,
  .cool_c076,
  .banner_4e58,
  .dim_be97,
  .mask_plasma_a093,
  .surface-wood-68d9,
  .tag-261a,
  .tag-e65b,
  .text-a3e2,
  .alert-pink-239e {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.shade_5784,
.pressed-0ad4,
.pressed_197e,
.wrapper-medium-fe30,
.current_8417,
.in_ac42,
.border_5e12,
.brown-9c66 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.breadcrumb_97c3,
.advanced_f71d,
.badge-easy-0a86 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.breadcrumb_97c3 > *,
.advanced_f71d > *,
.badge-easy-0a86 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: b6c5 */
.promo-block-a3 {
  padding: 0.5rem;
  font-size: 13px;
  line-height: 1.0;
}
