.market-section {
    padding: 4rem 0;
    width: 100%;
    overflow-x: hidden;
}

.market-section .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.market-section .floating-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
}

.market-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.market-section h2.section-title {
    font-size: 3.5rem;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #7A4FFC 0%, #4F74FC 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: 800px;
}

.market-section .section-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 0 2rem;
    text-align: center;
}

.market-section .floating-container p {
    text-align: center;
}

.market-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 100%;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
    flex: 1;
    max-width: 300px;
    padding: clamp(1.5rem, 3vw, 2rem);
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #7A4FFC 0%, #4F74FC 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .market-section {
        padding: 2rem 0;
    }
    
    .market-section .container {
        padding: 0 1rem;
    }
    
    .market-section .floating-container {
        padding: 1rem;
    }
    
    .market-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        width: 100%;
        max-width: none;
        padding: 1.5rem;
    }
    
    .stat-value {
        font-size: 2.5rem;
    }
    
    .market-section h2.section-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .market-section {
        padding: 1.5rem 0;
    }
    
    .stat-item {
        padding: 1.25rem;
    }
} 