.market__display {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-bottom: 10vh;
}       
.market__display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(37, 99, 235, 0.03)"/></svg>');
    background-size: cover;
    z-index: 0;
}       
.market-heading {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}       
.market-heading h2 {
    font-size: 2.8rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
}        
.market-heading h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}        
.market-heading p {
    font-size: 1.2rem;
    color: #475569;
    max-width: 600px;
    line-height: 1.6;
}        
.market-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 1;
}       
.market-tab {
    background: white;
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    color: #64748b;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}       
.market-tab:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    color: var(--primary);
}       
.market-tab.active {
    background: var(--primary);
    color: white;
    border-color: white;
    box-shadow: 0 10px 15px rgba(37, 99, 235, 0.2);
}       
.market-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    position: relative;
    z-index: 1;
}        
.market-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}        
.market-card:hover {
    transform: translateY(-1px) scale(1.001);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}        
.market-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}        
.market-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}      
.market-card:hover .market-image img {
    transform: scale(1.05);
}       
.market-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
}        
.market-content {
    padding: 1.8rem;
}       
.market-title {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 0.8rem;
    font-weight: 700;
}       
.market-stats {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
}      
.stat-item {
    text-align: center;
}       
.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}        
.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 0.3rem;
}        
.market-description {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}        
.market-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}       
.feature-tag {
    background: #e0f2fe;
    color: var(--primary-dark);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}       
.market-action {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary);
}       
.market-action:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-3px);
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(249, 115, 22, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
    }
}
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
@media (max-width: 1024px) {
    .market-grid {
        gap: 1.5rem;
        padding: 0 1rem;
    }
    .market-heading h2 {
        font-size: 2.6rem;
    }
    .market-title {
        font-size: 1.4rem;
    }
    .market-content {
        padding: 1.6rem;
    }
}
@media (max-width: 768px) {
    .market-heading h2 {
        font-size: 2.4rem;
    }
    .market-heading p {
        font-size: 1.1rem;
    }
    .market-tab {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    .market-title {
        font-size: 1.4rem;
    }
    .stat-value {
        font-size: 1.6rem;
    }
    .market-content {
        padding: 1.5rem;
    }
    .market-image {
        height: 180px;
    }
}
@media (max-width: 480px) {
    .market-stats {
    gap: 0;
    }
    .market-heading h2 {
        font-size: 2rem;
    }
    .market-heading p {
        font-size: 1rem;
    }
    .market-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        padding: 2vh;
    }
    .market-tab {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    .market-title {
        font-size: 1.2rem;
    }
    .stat-value {
        font-size: 1.5rem;
    }
    .market-content {
        padding: 1.2rem;
    }
    .market-action {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    .market-image {
        height: 160px;
    }
}


